ES6學習筆記之數組的擴展

✏️1. 擴展運算符 擴展運算符(spread)是三個點(...),將一個數組轉爲用逗號分隔的參數序列。html 普通用法 console.log(...[1,2,3]);//1 2 3 數組拷貝(普通類型深拷貝,複雜類型淺拷貝) const arr1 = [1, 2, 3, 4, 5]; const arr2 = [...arr1]; arr2[0] = 666; console.log('ar
相關文章
相關標籤/搜索