标签:class 控制台 bsp cti color ons 基础 打印 span
// 基础语法 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()
??
标签:class 控制台 bsp cti color ons 基础 打印 span
原文地址:https://www.cnblogs.com/jwzhang/p/12110005.html