Babel对CodePen的奇怪错误

时间:2017-06-24 13:28:01

标签: javascript babel codepen

我在笔中使用这行代码。

const CELLS = ([...Array(9).keys()]).map(key => '#cell' + key)

如果只是在控制台中使用它,它会创建  正如预期的那样["#cell0", "#cell1", "#cell2", "#cell3", "#cell4", "#cell5", "#cell6", "#cell7", "#cell8"]。 但当我打开Babel时,我明白了:["#cell[object Array Iterator]"] 但为什么呢?

CodePen link

0 个答案:

没有答案