Generator函数 2017-07-10 / ES6 / 点击 / 阅读耗时 1 分钟 基本用法1234567891011function* helloWorldGenerator() { yield 'hello'; yield 'world'; return 'ending';}var hwg = helloWorldGenerator();hwg.next();//{value: 'hello', done: false}hwg.next();//{value: 'world', done: false}hwg.next();//{value: 'ending', done: true}hwg.nexe();//{value: undefined, done: true}