摘要: 最基础的Generator function* Hello() { yield 100 yield (function () {return 200})() return 300 } var h = Hello() console.log(typeof h) // object console.lo 阅读全文
posted @ 2020-08-16 16:59 JackieDYH 阅读(5) 评论(0) 推荐(0) 编辑