我在笔中使用这行代码。
const CELLS = ([...Array(9).keys()]).map(key => '#cell' + key)
如果只是在控制台中使用它,它会创建
正如预期的那样["#cell0", "#cell1", "#cell2", "#cell3", "#cell4", "#cell5", "#cell6", "#cell7", "#cell8"]
。
但当我打开Babel时,我明白了:["#cell[object Array Iterator]"]
但为什么呢?