Generator简述
发布日期:2021-05-07 06:42:30 浏览次数:16 分类:精选文章

本文共 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
上一篇:npm 命令
下一篇:react 路由

发表评论

最新留言

网站不错 人气很旺了 加油
[***.192.178.218]2025年03月31日 16时17分56秒