ES6提供的兩個靜態方法: Array.from Array.of ES6提供操作、填充和過濾數組的方法: Array.prototype.copyWidthin Array.prototype.fill Array.prototype.find Array.prototype.findIndex ...
ES6提供的兩個靜態方法:
Array.from
Array.of
ES6提供操作、填充和過濾數組的方法:
Array.prototype.copyWidthin
Array.prototype.fill
Array.prototype.find
Array.prototype.findIndex
ES6中有關於數組迭代的方法:
Array.prototype.keys
Array.prototype.values
Array.prototype.entries
Array.prototype[Symbol.iterator]
接下來主要看看這些方法的使用。
Array.from()
Array.from()
方法主要用於將兩類對象(類似數組的對象[array-like object]和可遍歷對象[iterable])轉為真正的數組。
在ES5中常常使用下麵這樣的方法將一個類似數組的對象轉換成一個數組:
function cast () { return Array.prototype.slice.call(arguments); } cast('a','b','c','d'); // ["a", "b", "c", "d"]
在ES6中可以使用Array.from
將一個類似數組的對象轉換為一個真正的數組。
let arrayLike = { '0': 'a', '1': 'b', '2': 'c', length: 3 } console.log(Array.from(arrayLike)); // ["a","b","c"]
在ES6中,擴展運算符(...
)也可以將某些數據結構轉為數組。只不過它需要在背後調用遍歷器介面Symbol.iterator
。
function cast (){ return [...arguments] } cast('a','b','c'); // ["a","b","c"]
值得註意的是如果一個對象沒有部署遍歷器介面,使用擴展運算符是無法將類似數組對象轉換成數組。
Array.from
接受三個參數,但只有input
是必須的:
input
: 你想要轉換的類似數組對象和可遍歷對象map
: 類似於數組的map
方法,用來對每個元素進行處理,將處理後的值放入返回的數組context
: 綁定map
中用到的this
只要是部署了iterator
介面的數據結構,Array.from
都能將其轉為數組:
let arr = Array.from('w3cplus.com') console.log(arr); // ["w","3","c","p","l","u","s",".","c","o","m"] let namesSet = new Set(['a', 'b']) let arr2 = Array.from(namesSet) console.log(arr2); //["a","b"]
上面的代碼,因為字元呂和Set結構都具有iterator
介面,因此可以被Array.from
轉為真正的數組。如果參數是一個真正的數組,Array.from
也會返回一個一模一樣的新數組:
let arr = Array.from([1, 2, 3]); console.log(arr); // [1,2,3]
前面也說過Array.from
還可以接受第二個參數,作用類似於數組的map
方法,用來對每個元素進行處理,處理後的值放入返回的數組:
Array.from(arrayLike, x => x * x); // 等同於 Array.from(arrayLike).map(x => x * x); Array.from([1, 2, 3], (x) => x * x) // [1, 4, 9]
如果map
函數裡面用到了this
關鍵字,還可以傳入Array.from
的第三個參數,用來綁定this
。
Array.from()
可以將各種值轉為真正的數組,並且還提供map
功能。這實際上意味著,只要有一個原始的數據結構,你就可以先對它的值進行處理,然後轉成規範的數組結構,進而就可以使用數量眾多的數組方法。
Array.from({ length: 2 }, () => 'jack') // ['jack', 'jack']
上面代碼中,Array.from
的第一個參數指定了第二個參數運行的次數。這種特性可以讓該方法的用法變得非常靈活。
Array.from()
的另一個應用是,將字元串轉為數組,然後返回字元串的長度。因為它能正確處理各種Unicode
字元,可以避免JavaScript將大於\uFFFF
的Unicode字元,算作兩個字元的bug。
function countSymbols(string) { return Array.from(string).length; }
使用Array.from()
還可以返回各種數據類型:
function typesOf () { return Array.from(arguments, value => typeof value) } typesOf(null, [], NaN) // <- ['object', 'object', 'number']
你也可以使用map
方法實現上面代碼的功能:
function typesOf (...all) { return all.map(value => typeof value) } typesOf(null, [], NaN) // <- ['object', 'object', 'number']
Array.of
使用Array.of
方法可以將一組值轉換為數組。
Array.of = function of () { return Array.prototype.slice.call(arguments) }
但你不能使用Array.of
來替代Array.prototype.slice.call
,他們的行為不一樣:
Array.prototype.slice.call([1, 2, 3]) // <- [1, 2, 3] Array.of(1, 2, 3) // <- [1, 2, 3] Array.of(3) // <- [1]
這個方法主要目的主要還是用來彌補數組構造函數Array()
的不足,因為參數個數的不同,會導致Array()
行為有所差異:
new Array() // <- [] new Array(undefined) // <- [undefined] new Array(1) // <- [undefined x 1] new Array(3) // <- [undefined x 3] new Array(1, 2) // <- [1, 2] new Array(-1) // <- RangeError: Invalid array length
Array.of
基本上可以用來替代Array()
或new Array()
,並且不存在由於參數不同而導致的重載,而且他們的行為非常統一:
Array.of() // <- [] Array.of(undefined) // <- [undefined] Array.of(1) // <- [1] Array.of(3) // <- [3] Array.of(1, 2) // <- [1, 2] Array.of(-1) // <- [-1]
Array.of
方法可以使用下麵的代碼來模擬實現:
function ArrayOf(){ return [].slice.call(arguments); }
copyWidthin
copyWidthin
方法可以在當前數組內部,將指定位置的數組項複製到其他位置(會覆蓋原數組項),然後返回當前數組。使用copyWidthin
方法會修改當前數組。
Array.prototype.copyWithin(target, start = 0, end = this.length)
copyWidthin
將會接受三個參數:
target
: 這個參數是必須的,從該位置開始替換數組項start
: 這是一個可選參數,從該位置開始讀取數組項,預設為0
,如果為負值,表示從數組的右邊向左開始讀取end
: 這是一個可選參數,到該位置停止讀取的數組項,預設等於Array.length
。如果為負值,表示倒數
我們先來看一個簡單的示例,下麵聲明瞭一個items
數組:
var items = [1, 2, 3, ,,,,,,,]; // <- [1, 2, 3, undefined x 7]
下麵的代碼將在數組items
的第六個位置開始粘貼數組項。粘貼過去的數組項是從items
的第二位開始到第三位置結束。
items.copyWithin(6, 1, 3) // <- [1, 2, 3, undefined × 3, 2, 3, undefined × 2]
下麵是更多例子:
// 將3號位複製到0號位 [1, 2, 3, 4, 5].copyWithin(0, 3, 4) // [4, 2, 3, 4, 5] // -2相當於3號位,-1相當於4號位 [1, 2, 3, 4, 5].copyWithin(0, -2, -1) // [4, 2, 3, 4, 5] // 將3號位複製到0號位 [].copyWithin.call({length: 5, 3: 1}, 0, 3) // {0: 1, 3: 1, length: 5} // 將2號位到數組結束,複製到0號位 var i32a = new Int32Array([1, 2, 3, 4, 5]); i32a.copyWithin(0, 2); // Int32Array [3, 4, 5, 4, 5] // 對於沒有部署TypedArray的copyWithin方法的平臺 // 需要採用下麵的寫法 [].copyWithin.call(new Int32Array([1, 2, 3, 4, 5]), 0, 3, 4); // Int32Array [4, 2, 3, 4, 5]
Array.prototype.fill
Array.prototype.fill
方法使用給定的值填充一個數組:
['a', 'b', 'c'].fill(0) // <- [0, 0, 0] new Array(3).fill(0) // <- [0, 0, 0]
上面這種方法用於空數組的初始化非常方便。數組中已有的元素會全部被抹去。
除此之外,Array.prototype.fill
方法還可以接受第二個和第三個參數,用於指定填充的起始位置和結束位置。
['a', 'b', 'c',,,].fill(0, 2) // <- ['a', 'b', 0, 0, 0] new Array(5).fill(0, 0, 3) // <- [0, 0, 0, undefined x 2]
Array.prototype.fill
提供的值可以是任意的,不僅可以是一個數值,甚至還可以是一個原始類型:
new Array(3).fill({}) // <- [{}, {}, {}]
不過這個方法不可以接受數組的映射方法,不過可以接受一個索引參數或類似下麵這樣的方式:
new Array(3).fill(function foo () {}) // <- [function foo () {}, function foo () {}, function foo () {}]
Array.prototype.find
Array.prototype.find
方法用於找出第一個符合條件的數組成員。它的參數是一個回調函數,所有數組成員依次執行該回調函數,直到找出第一個返回值為true
的數組項,然後返回該數組項。如果沒有符合條件的數組項,則返回undefined
。
[1, 2, 3, 4, 5].find(item => item > 2) // <- 3 [1, 2, 3, 4, 5].find((item, i) => i === 3) // <- 4 [1, 2, 3, 4, 5].find(item => item === Infinity) // <- undefined
另外這種方法的回調函數可以接受三個參數,依次為當前的值、當前的位置和原始數組。
[1, 5, 10, 15].find(function(value, index, arr) { return value > 9; }) // 10
Array.prototype.findIndex
這個方法類似於.some
和.find
方法。像.some
返回true
;像.find
返回item
。如果array[index] === item
則返回其index
。
Array.prototype.findIndex
方法主要是用來返回數組項在數組中的位置。其和Array.prototype.find
方法非常類似,接受一個回調函數,如果符合回調函數的條件,則返回數組項在數組中的位置,如果所有數組項都不符合回調函數條件,則會返回-1
。
[1, 2, 3, 4, 5].find(item => item > 2) // <- 2 [1, 2, 3, 4, 5].find((item, i) => i === 3) // <- 3 [1, 2, 3, 4, 5].find(item => item === Infinity) // <- -1
這個方法也可以接受第二個參數,用來綁定回調函數的this
對象。
註:Array.prototype.find
和Array.prototype.findIndex
兩個方法都可以發現NaN
,彌補數組的indexOf
方法的不足。
[NaN].indexOf(NaN) // -1 [NaN].findIndex(y => Object.is(NaN, y)) // 0
上面的代碼中,indexOf
方法無法識別數組的NaN
成員,但是findIndex
方法可以藉助Object.is
方法做到。
ES6遍曆數組的方法
ES6提供了三個新方法:entries()
、keys()
和values()
,用來遍曆數組。它們都返回一個遍歷器對象,可以用for...of
迴圈進行遍歷,唯一的區別是keys()
是對數組的鍵名的遍歷、values()
是對數組鍵值的遍歷,entries()
方法是對數值的鍵值對的遍歷。
for (let index of ['a', 'b'].keys()) { console.log(index); } // 0 // 1 for (let elem of ['a', 'b'].values()) { console.log(elem); } // 'a' // 'b' for (let [index, elem] of ['a', 'b'].entries()) { console.log(index, elem); } // 0 "a" // 1 "b"
如果不使用for...of
迴圈,可以手動調用遍歷器對象的next
方法,進行遍歷:
let letter = ['a', 'b', 'c']; let entries = letter.entries(); console.log(entries.next().value); // [0, 'a'] console.log(entries.next().value); // [1, 'b'] console.log(entries.next().value); // [2, 'c']