我发现以下工作正常:
while ((_next = itr.next()) && !_next.done) {
...
}
并且没有任何事先声明_next
,如果我声明变量,traceur 实际上会引发意外的关键字错误while ((let _next = itr.next()) ...
。
这是 ECMAScript 6 吗?
我发现以下工作正常:
while ((_next = itr.next()) && !_next.done) {
...
}
并且没有任何事先声明_next
,如果我声明变量,traceur 实际上会引发意外的关键字错误while ((let _next = itr.next()) ...
。
这是 ECMAScript 6 吗?