美文网首页
yield和generaotor

yield和generaotor

作者: 9月的甜橙子 | 来源:发表于2021-09-07 09:11 被阅读0次
function* generatorOne(){
  yield ['a','b','c'];
}
function* generatorTwo(){
  yield* ['a','b','c'];
}

const one = generatorOne();
const two = generatorTwo();

one.next().value; // ['a','b','c']
two.next().value; // a

相关文章

网友评论

      本文标题:yield和generaotor

      本文链接:https://www.haomeiwen.com/subject/hjuuwltx.html