generator
function* hellloWordGenarator(){ yield 'hello'; yield 'world'; yield 'ending';}var hw = hellloWordGenarator()console.log(hw)//1.hw是一个generator的遍历器对象// Generator {_invoke: ƒ}// _invoke: ƒ invoke(method, arg)// __proto__: Generator//2.






