Generator的基础语法

 

// 基础语法
const repos = [
    {name:'grit'},
    {name:'js'},
    {name:'php'}
]
function* loop(arr){
    console.log(arr)
    for(const repo of arr){
        yield repo
    }
}
const colors = loop(repos);
// 控制台打印
colors.next()

 

😘

posted @ 2019-12-27 23:04  问问大将军  阅读(93)  评论(0编辑  收藏  举报