在es6中,三個點“...”指的是“擴展運算符”,可以在函數調用或數組構造時,將數組表達式或string在語法層面展開;也可以在建構字面量物件時將物件表達式按照「key-value」的方式展開。
本教學操作環境:windows7系統、ECMAScript 6版、Dell G3電腦。
es6中三個點是什麼意思
#三個點(...
)真名叫擴充運算符,是在ES6中新增加的內容,它可以在函數調用/數組構造時,將數組表達式或string在語法層面展開;還可以在構造字面量對象時將對象表達式按照key- value
的方式展開
字面量一般指[1,2,3]或{name:'chuichui'}這種簡潔的建構方式,多層嵌套的陣列和物件三個點就無能為力了
說白了就是把衣服脫了,不管是大括號([])、花括號({}),統統不在話下,全部脫掉脫掉!
// 数组 var number = [1,2,3,4,5,6] console.log(...number) //1 2 3 4 5 6 //对象 var man = {name:'chuichui',height:176} console.log({...man}) / {name:'chuichui',height:176}
擴充運算子的8種用法
#1.拷貝陣列物件
#使用擴展符拷貝數組是ES6中常用的操作:
const years = [2018, 2019, 2020, 2021]; const copyYears = [...years]; console.log(copyYears); // [ 2018, 2019, 2020, 2021 ]
擴展運算子拷貝數組,只有第一層是深拷貝,即對一維數組使用擴充運算子拷貝就屬於深拷貝,看下面的程式碼:
const miniCalendar = [2021, [1, 2, 3, 4, 5, 6, 7], 1]; const copyArray = [...miniCalendar]; console.log(copyArray); // [ 2021, [ 1, 2, 3, 4, 5, 6, 7 ], 1 ] copyArray[1][0] = 0; copyArray[1].push(8); copyArray[2] = 2; console.log(copyArray); // [ 2021, [ 0, 2, 3, 4, 5, 6, 7, 8 ], 2 ] console.log(miniCalendar); // [ 2021, [ 0, 2, 3, 4, 5, 6, 7, 8 ], 1 ]
把列印的結果放在一起便於更清楚進行對比,如下:
變數說明 | 結果 | 運算 |
---|---|---|
#copyArray |
|
copyArray
|
複製陣列 miniCalendar |
|
#copyArray |
[ 2021, [ 0, 2, 3, 4, 5, 6, 7, 8 ], 2 ]
| # 1. 將陣列第二個元素的第一個元素重新賦值為0 ;2. 往陣列的第二個元素增加一個元素8 ;3. 將陣列第三個元素重新賦值為2
|
#miniCalendar |
從結果來看,陣列的第二個元素為數組,大於1維了,裡面的元素的變更會導致原始變數的值隨之改變
擴充運算子拷貝物件只會在一層進行深拷貝,從下面程式碼是基於上面程式碼:拷貝對象,程式碼如下:
const time = { year: 2021, month: 7, day: { value: 1, }, }; const copyTime = { ...time }; console.log(copyTime); // { year: 2021, month: 7, day: { value: 1 } }
copyTime.day.value = 2; copyTime.month = 6; console.log(copyTime); // { year: 2021, month: 6, day: { value: 2 } } console.log(time); // { year: 2021, month: 7, day: { value: 2 } }從列印的結果看,擴展運算符只對物件第一層進行了深拷貝。 嚴格來講,擴充運算子不執行深拷貝 #2. 合併運算
先來看數組的合併,如下:
const halfMonths1 = [1, 2, 3, 4, 5, 6]; const halfMonths2 = [7, 8, 9, 10, 11, 12]; const allMonths = [...halfMonths1, ...halfMonths2]; console.log(allMonths); // [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 ]合併對象,在合併對象時,如果一個鍵已經存在,它會被具有相同鍵的最後一個對象給替換。
const time1 = { month: 7, day: { value: 1, }, }; const time2 = { year: 2021, month: 8, day: { value: 10, }, }; const time = { ...time1, ...time2 }; console.log(time); // { month: 8, day: { value: 10 }, year: 2021 }
3. 參數傳遞
const sum = (num1, num2) => num1 + num2; console.log(sum(...[6, 7])); // 13 console.log(sum(...[6, 7, 8])); // 13從上面的程式碼看,函數定義了多少個參數,擴充運算子傳入的值就是多少個。 和math 函數一起使用,如下:
const arrayNumbers = [1, 5, 9, 3, 5, 7, 10]; const min = Math.min(...arrayNumbers); const max = Math.max(...arrayNumbers); console.log(min); // 1 console.log(max); // 10
4. 陣列去重與Set
一起使用消除陣列的重複項,如下:const arrayNumbers = [1, 5, 9, 3, 5, 7, 10, 4, 5, 2, 5]; const newNumbers = [...new Set(arrayNumbers)]; console.log(newNumbers); // [ 1, 5, 9, 3, 7, 10, 4, 2 ]
#5. 字串轉字元陣列
String 也是一個可迭代對象,所以也可以使用擴充運算子... 將其轉為字元數組,如下:
const title = "china"; const charts = [...title]; console.log(charts); // [ 'c', 'h', 'i', 'n', 'a' ]進而簡單進行字符串列截取,如下:
const title = "china"; const short = [...title]; short.length = 2; console.log(short.join("")); // ch6.
NodeList 轉數組
##NodeList
物件是節點的集合,通常是由屬性,如Node.childNodes 和方法,如document.querySelectorAll 傳回的。
NodeList類似數組,但不是數組,沒有Array 的所有方法,例如find、
map# ##、###filter### 等,但可以使用###forEach()### 來迭代。 ######可以透過擴充運算子將其轉為數組,如下:###const nodeList = document.querySelectorAll(".row"); const nodeArray = [...nodeList]; console.log(nodeList); console.log(nodeArray);###################7. 解構變數##### #######解構數組,如下:###
const [currentMonth, ...others] = [7, 8, 9, 10, 11, 12]; console.log(currentMonth); // 7 console.log(others); // [ 8, 9, 10, 11, 12 ]###解構對象,如下:###
const userInfo = { name: "Crayon", province: "Guangdong", city: "Shenzhen" }; const { name, ...location } = userInfo; console.log(name); // Crayon console.log(location); // { province: 'Guangdong', city: 'Shenzhen' }#########8. 列印日誌######### ###在列印可迭代物件的時候,需要列印每一項可以使用擴充符,如下:###
const years = [2018, 2019, 2020, 2021]; console.log(...years); // 2018 2019 2020 2021##########總結############擴展運算子… 讓程式碼變得簡潔,應該是ES6中比較受歡迎的操作符了。 ######【相關推薦:###javascript影片教學###、###web前端###】###
以上是es6三個點是什麼意思的詳細內容。更多資訊請關注PHP中文網其他相關文章!