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遍历数组的方法