会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
初心不负
博客园
首页
新随笔
联系
订阅
管理
2019年9月27日
ECMAScript6 入门 Generator
摘要: 基本概念 Generator 函数是一个状态机,封装了多个内部状态,执行 Generator 函数会返回一个遍历器对象 Generator 函数除了状态机,还是一个遍历器对象生成函数, 返回的遍历器对象,可以依次遍历 Generator 函数内部的每一个状态 function* helloWorldGenerator() { yield 'hello'; yield 'world'; return
阅读全文
posted @ 2019-09-27 14:29 初心不负
阅读(162)
评论(0)
推荐(0)
编辑
公告