标签: javascript spread
我想使用传播运算符合并两个数组,稍后对结果数组进行排序。
var arr=[1,2,7]; var arrConact=[3,100,8]; var Resu=[...arr,...arrConact]; console.log(Resu.sort()); // but not this one console.log(arr.concat(arrConact));//Work Fine