猿问

用Babel 把es6代码转为es5时 然后generator函数在浏览器中报错怎么解决

es6中代码 想打印一下报错

function* add(){    yield "hello";    yield "world";    return "encoding";
}
let ad=add();
console.log(ad.next())
console.log(ad.next())
console.log(ad.next());
console.log(1)


函数式编程
浏览 538回答 1
1回答
随时随地看视频慕课网APP

相关分类

Html5
我要回答