day035: JS中淺拷貝的手段有哪些?

重要: 什麼是拷貝? 首先來直觀的感覺一下什麼是拷貝。數組 let arr = [1, 2, 3]; let newArr = arr; newArr[0] = 100; console.log(arr);//[100, 2, 3] let arr = [1, 2, 3]; let newArr = arr; newArr[0] = 100; console.log(arr);//[100, 2,
相關文章
相關標籤/搜索