摘要: // 基础语法 const repos = [ {name:'grit'}, {name:'js'}, {name:'php'} ] function* loop(arr){ console.log(arr) for(const repo of arr){ yield repo } } const 阅读全文
posted @ 2019-12-27 23:04 问问大将军 阅读(93) 评论(0) 推荐(0) 编辑