JavaScript展開操做符(Spread operator)介紹

本文介紹JavaScript的展開操做符(Spread operator)...。本文適合ES6初學者。javascript

你能夠經過展開操做符(Spread operator)...擴展一個數組對象和字符串。展開運算符(spread)是三個點(…),能夠將可迭代對象轉爲用逗號分隔的參數序列。如同rest參數的逆運算。php

用於數組

以數組爲例,首先建立一個數組,前端

const a = [1, 2, 3],
          b = [4,5,6];

你能夠輕鬆賦值一個數組:java

const c = [...a]  // [1,2,3]

你還能夠輕鬆拼接兩個數組:nginx

const d = [...a,...b] //  [1,2,3,4,5,6]

也能夠以下拼接程序員

const d = [...a,4, 5, 6] //  [1,2,3,4,5,6]

若是要把一個數組b的元素所有插入到數組a的後面(不生成新數組),能夠這樣操做:數組

const a = [1,2,3];
a.push(...b);

若是要把一個數組b的元素所有插入到數組a的前面(不生成新數組),能夠這樣操做:架構

const a = [1,2,3];
a. unshift(...b);

類數組對象變成數組

能夠經過展開運算符把類數組對象變成真正的數組:函數

var list=document.getElementsByTagName('a');
var arr=[..list];

用於對象

展開操做符一樣能夠用於對象。能夠經過如下方式clone一個對象:ui

const newObj = { ...oldObj }

注意: 若是屬性值是一個對象,那麼只會生成一個指向該對象的引用,而不會深度拷貝。也就是說,展開運算符不會遞歸地深度拷貝全部屬性。而且,只有可枚舉屬性會被拷貝,原型鏈不會被拷貝。

還能夠用於merge兩個對象。

const obj1 = { a: 111, b: 222 };
const obj2 = { c: 333, d: 444 };
const merged = { ...obj1, ...obj2 };
console.log(merged); // -> { a: 111, b: 222, c: 333, d: 444 }

固然也能夠適用於如下的狀況:

const others = {third: 3, fourth: 4, fifth: 5}
const items = { first:1, second:1, ...others }
items //{ first: 1, second: 2, third: 3, fourth: 4, fifth: 5 }

若是merge的多個對象有相同屬性,則後面的對象的會覆蓋前面對象的屬性,好比

const obj1 = { a: 111, b: 222 };
const obj2 = { b: 333, d: 444 };
const merged = { ...obj1, ...obj2 };
console.log(merged); // -> { a: 111,  b: 333, d: 444 }

const obj1 = {a:111,b:222}
const merged = {a:222,...obj1}; 
console.log(merged); // -> { a: 111,  b: 333 }

const obj1 = {a:111,b:222}
const merged = {...obj1,a:222}; 
console.log(merged); // -> { a: 222,  b: 333 }

用於字符串

經過展開操做符,能夠把一個字符串分解成一個字符數組,至關於

const hey = 'hey'
const arrayized = [...hey] // ['h', 'e', 'y']

以上代碼至關於:

const hey = 'hey'
const arrayized = hey.split('') // ['h', 'e', 'y']

用於函數傳參

經過展開操做符,能夠經過數組給函數傳參:

const f = (foo, bar) => {}
const a = [1, 2]
f(...a)

const numbers = [1, 2, 3, 4, 5]
const sum = (a, b, c, d, e) => a + b + c + d + e
const sum = sum(...numbers)

用於具備 Iterator 接口的對象

具備 Iterator 接口的對象Map 和 Set 結構,Generator 函數,可使用展開操做符,好比:

var s = new Set();
s.add(1);
s.add(2);
var arr = [...s]// [1,2]


function  * gen() {
    yield 1;
    yield 2;
    yield 3;
}

var arr = [...gen()]  // 1,2,3

若是是map,會把每一個key 和 value 轉成一個數組:

var m = new Map();
m.set(1,1)
m.set(2,2)
var arr = [...m] // [[1,1],[2,2]]

注意如下代碼會報錯,由於obj不是一個Iterator對象:

var obj = {'key1': 'value1'};
var array = [...obj]; // TypeError: obj is not iterable

歡迎關注公衆號「ITman彪叔」。彪叔,擁有10多年開發經驗,現任公司系統架構師、技術總監、技術培訓師、職業規劃師。熟悉Java、JavaScript。在計算機圖形學、WebGL、前端可視化方面有深刻研究。對程序員思惟能力訓練和培訓、程序員職業規劃和程序員理財投資有濃厚興趣。

ITman彪叔公衆號ITman彪叔公衆號

相關文章
相關標籤/搜索