1. spread operator作用在数组上有打散数组的效果,用来重新组装数组。const arr1 = [1,2,3]const arr2 = [...arr1, 4, 5]console.log(arr2) // [1, ...
確定! 回上一頁