我写了下面的代码:
<script type="text/javascript">
function testGenerator()
{
yield "first";
document.write("step1");
yield "second";
document.write("step2");
yield "third";
document.write("step3");
}
var g = testGenerator();
document.write(g.next());
document.write(g.next());
</script>
我想要的输出:step1step2 但是上面的代码在我的 html 上什么也没显示。谁能帮我弄清楚我在这里犯了什么错误。
谢谢