📜  生成器函数 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:26.281000             🧑  作者: Mango

代码示例2
function* indexGenerator(){
  var index = 0;
  while(true) {
    yield index++;
  }
}
const g = indexGenerator();
console.log(g.next().value); // => 0
console.log(g.next().value); // => 1