这可能很愚蠢,但我确实坚持使用 点点点数组(... [])
我在玩数组,最近发现一个我不明白的事实。
在Node.js环境中考虑此功能:
function test(name, age, adress) {
console.log(Array.from(arguments));
console.log(...Array.from(arguments));
}
输出为:
// [ 'john', 25, 'new york' ]
// john 25 new york
我以为第二行是数组值(参数)的串联(strng),直到我在chrome的控制台中执行此功能为止:
所以我的问题是:
预先感谢