本文共 218 字,大约阅读时间需要 1 分钟。
Generator是一个状态机,也是一个遍历器生成对象
function* hellofn(){ yield “hello” yield “world” return “end”}var h=hellofn()h.next()//{ value:"hello",done:false }h. next()//world falseh. next()// end trueh. next()//undefined true
转载地址:http://spsh.baihongyu.com/