代码会说话:
ES35合并数组
{
var params=[‘hello’,true,7];
var other=[1,2].concat(params);
console.log(other);//1,2,’hello’,true,7
}
ES6合并数组
{
var params=[‘hello’,true,7];
var other=[1,2,…params];
console.log(other)//1,2,’hello’,true,7
}
整理以自鉴 不喜请补充~ 嗯嘛
代码会说话:
ES35合并数组
{
var params=[‘hello’,true,7];
var other=[1,2].concat(params);
console.log(other);//1,2,’hello’,true,7
}
ES6合并数组
{
var params=[‘hello’,true,7];
var other=[1,2,…params];
console.log(other)//1,2,’hello’,true,7
}
整理以自鉴 不喜请补充~ 嗯嘛