Generator
Generator
简介
function* helloWorldGenerator() {
console.log('我执行了。');
yield 'hello';
yield 'world';
return 'ending';
}
var hw = helloWorldGenerator();//函数并不会执行yield语句
与 Iterator 接口的关系
next方法的参数
for...of循环
Generator.prototype.return()
yield* 语句
Generator函数的this
Last updated