您好,登錄后才能下訂單哦!
小編給大家分享一下JavaScript擴展運算符怎么用,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
我們可以使用展開操作符復制數組,不過要注意的是這是一個淺拷貝。
const arr1 = [1,2,3]; const arr2 = [...arr1]; console.log(arr2); // [ 1, 2, 3 ]
這樣我們就可以復制一個基本的數組,注意,它不適用于多級數組或帶有日期或函數的數組。
假設我們有兩個數組想合并為一個,早期間我們可以使用concat
方法,但現在可以使用展開操作符:
const arr1 = [1,2,3]; const arr2 = [4,5,6]; const arr3 = [...arr1, ...arr2]; console.log(arr3); // [ 1, 2, 3, 4, 5, 6 ]
我們還可以通過不同的排列方式來說明哪個應該先出現。
const arr3 = [...arr2, ...arr1]; console.log(arr3); [4, 5, 6, 1, 2, 3];
此外,展開運算符號還適用多個數組的合并:
const output = [...arr1, ...arr2, ...arr3, ...arr4];
let arr1 = ['this', 'is', 'an']; arr1 = [...arr1, 'array']; console.log(arr1); // [ 'this', 'is', 'an', 'array' ]
假設你有一個user
的對象,但它缺少一個age
屬性。
const user = { firstname: 'Chris', lastname: 'Bongers' };
要向這個user
對象添加age
,我們可以再次利用展開操作符。
const output = {...user, age: 31};
假設我們有一個數字數組,我們想要獲得這些數字中的最大值、最小值或者總和。
const arr1 = [1, -1, 0, 5, 3];
為了獲得最小值,我們可以使用展開操作符和 Math.min
方法。
const arr1 = [1, -1, 0, 5, 3]; const min = Math.min(...arr1); console.log(min); // -1
同樣,要獲得最大值,可以這么做:
const arr1 = [1, -1, 0, 5, 3]; const max = Math.max(...arr1); console.log(max); // 5
如大家所見,最大值5
,如果我們刪除5
,它將返回3
。
你可能會好奇,如果我們不使用展開操作符會發生什么?
const arr1 = [1, -1, 0, 5, 3]; const max = Math.max(arr1); console.log(max); // NaN
這會返回NaN,因為JavaScript不知道數組的最大值是什么。
假設我們有一個函數,它有三個參數。
const myFunc(x1, x2, x3) => { console.log(x1); console.log(x2); console.log(x3); }
我們可以按以下方式調用這個函數:
myFunc(1, 2, 3);
但是,如果我們要傳遞一個數組會發生什么。
const arr1 = [1, 2, 3];
我們可以使用展開操作符將這個數組擴展到我們的函數中。
myFunc(...arr1); // 1 // 2 // 3
這里,我們將數組分為三個單獨的參數,然后傳遞給函數。
const myFunc = (x1, x2, x3) => { console.log(x1); console.log(x2); console.log(x3); }; const arr1 = [1, 2, 3]; myFunc(...arr1); // 1 // 2 // 3
假設我們有一個函數,它接受無限個參數,如下所示:
const myFunc = (...args) => { console.log(args); };
如果我們現在調用這個帶有多個參數的函數,會看到下面的情況:
myFunc(1, 'a', new Date());
返回:
[ 1, 'a', Date { __proto__: Date {} } ]
然后,我們就可以動態地循環遍歷參數。
假設我們使用了展開運算符來獲取頁面上的所有p
:
const el = [...document.querySelectorAll('p')]; console.log(el); // (3) [p, p, p]
在這里可以看到我們從dom中獲得了3個p
。
現在,我們可以輕松地遍歷這些元素,因為它們是數組了。
const el = [...document.querySelectorAll('p')]; el.forEach(item => { console.log(item); }); // <p></p> // <p></p> // <p></p>
假設我們有一個對象user
:
const user = { firstname: 'Chris', lastname: 'Bongers', age: 31 };
現在,我們可以使用展開運算符將其分解為單個變量。
const {firstname, ...rest} = user; console.log(firstname); console.log(rest); // 'Chris' // { lastname: 'Bongers', age: 31 }
這里,我們解構了user
對象,并將firstname
解構為firstname
變量,將對象的其余部分解構為rest
變量。
展開運算符的最后一個用例是將一個字符串分解成單個單詞。
假設我們有以下字符串:
const str = 'Hello';
然后,如果我們對這個字符串使用展開操作符,我們將得到一個字母數組。
const str = 'Hello'; const arr = [...str]; console.log(arr); // [ 'H', 'e', 'l', 'l', 'o' ]
以上是“JavaScript擴展運算符怎么用”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。