ECMAScript数组扩展

Array.form()

将类似数组的对象array-like object 和遍历的iterable对象 Set和Map对象转化为真正的数组

let arrayLike = {
   '0': 'a',
   '1': 'b',
   '2': 'c',
   length: 3
};
// ES5的写法
var arr1 = [].slice.call(arrayLike); // ['a', 'b', 'c']
// ES6的写法
let arr2 = Array.from(arrayLike); // ['a', 'b', 'c']

DOM操作返回的NodeList集合,以及函数内部的 arguments 对象。 Array.from 都可以将它们转为真正的数组

// NodeList对象
let ps = document.querySelectorAll('p');
Array.from(ps).forEach(function (p) {
    console.log(p);
});
// arguments对象
function foo() {
   var args = Array.from(arguments);
}

只要是部署了Iterator接口的数据结构, Array.from 都能将其转为数组

Array.from('hello')
// ['h', 'e', 'l', 'l', 'o']
let namesSet = new Set(['a', 'b'])
Array.from(namesSet) // ['a', 'b']

扩展运算符( ... )也可以将某些数据结构转为数组

// arguments对象
function foo() {
   var args = [...arguments];
}
// NodeList对象
[...document.querySelectorAll('div')]

扩展运算符背后调用的是遍历器接口( Symbol.iterator ),如果一个对象没有部署这个接口,就无法转换。 Array.from 方法则是还支持类似数组的对象。所谓类似数组的对象,本质特征只有一点,即必须有 length 属性。因此,任何有 length 属性的对象,都可以通过 Array.from 方法转为数组,而此时扩展运算符就无法转换

Array.from({ length: 3 });
// [ undefined, undefined, undefinded ]

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]

取出一组DOM节点的文本内容

let spans = document.querySelectorAll('span.name');
// map()
let names1 = Array.prototype.map.call(spans, s => s.textContent);
// Array.from()
let names2 = Array.from(spans, s => s.textContent)

将数组中布尔值为 false 的成员转为 0

Array.from([1, , 2, , 3], (n) => n || 0)
// [1, 0, 2, 0, 3]

返回各种数据的类型

function typesOf () {
   return Array.from(arguments, value => typeof value)
}
typesOf(null, [], NaN)
// ['object', 'object', 'number']

Array.from 的第一个参数指定了第二个参数运行的次数。这种特性可以让该方法的用法变得非常灵活

Array.from({ length: 2 }, () => 'jack')
// ['jack', 'jack']

Array.from() 的另一个应用是,将字符串转为数组,然后返回字符串的长度。因为它能正确处理各种Unicode字符,可以避
免JavaScript将大于 \uFFFF 的Unicode字符,算作两个字符的bug

function countSymbols(string) {
   return Array.from(string).length;
}

Array.of()

将一组值,转换为数组

Array.of(3, 11, 8) // [3,11,8]
Array.of(3) // [3]
Array.of(3).length // 1

只有当参数个数不少于2个时, Array() 才会返回由参数组成的新数组。参数个数只有一个时,实际上是指定数组的长度
Array.of 基本上可以用来替代 Array() 或 new Array() ,并且不存在由于参数不同而导致的重载

Array(3) // [, , ,]
Array.of() // []
Array.of(undefined) // [undefined]
Array.of(1) // [1]
Array.of(1, 2) // [1, 2]

数组实例的copyWithin()

在当前数组内部,将指定位置的成员复制到其他位置(会覆盖原有成员)

Array.prototype.copyWithin(target, start = 0, end = this.length)
  • target(必需):从该位置开始替换数据。
  • start(可选):从该位置开始读取数据,默认为0。如果为负值,表示倒数。
  • end(可选):到该位置前停止读取数据,默认等于数组长度。如果为负值,表示倒数。

从3号位直到数组结束的成员(4和5),复制到从0号位开始的位置,结果覆盖了原来的1和2

[1, 2, 3, 4, 5].copyWithin(0, 3)
// [4, 5, 3, 4, 5]
// 将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]

数组实例find()和findIndex()

数组实例的 find 方法,用于找出第一个符合条件的数组成员。它的参数是一个回调函数,所有数组成员依次执行该回调函
数,直到找出第一个返回值为 true 的成员,然后返回该成员。如果没有符合条件的成员,则返回 undefined

[1, 4, -5, 10].find((n) => n < 0)
// -5

find 方法的回调函数可以接受三个参数,依次为当前的值、当前的位置和原数组

[1, 5, 10, 15].find(function(value, index, arr) {
return value > 9;
}) // 10

findIndex 方法返回第一个符合条件的数组成员的位置,如果所有成员都不符合条件,则返回 -1

[1, 5, 10, 15].findIndex(function(value, index, arr) {
return value > 9;
}) // 2

这两个方法都可以发现 NaN ,弥补了数组的 IndexOf 方法的不足
indexOf 方法无法识别数组的 NaN 成员,但是 findIndex 方法可以借助 Object.is 方法做到

[NaN].indexOf(NaN)
// -1
[NaN].findIndex(y => Object.is(NaN, y))
//0

数组实例的fill()

fill 方法使用给定值,填充一个数组

['a', 'b', 'c'].fill(7)
// [7, 7, 7]
new Array(3).fill(7)
// [7, 7, 7]

fill 方法还可以接受第二个和第三个参数,用于指定填充的起始位置和结束位置

['a', 'b', 'c'].fill(7, 1, 2)
// ['a', 7, 'c']

数组实例的entries(),keys(),values()

keys() 是对键名的遍历、 values() 是对键值的遍历, entries() 是对键值对的遍历
可以用 for...of 循环进行遍历

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"

可以手动调用遍历器对象的 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']

数组实例的includes()

Array.prototype.includes 方法返回一个布尔值,表示某个数组是否包含给定的值

[1, 2, 3].includes(2); // true
[1, 2, 3].includes(4); // false
[1, 2, NaN].includes(NaN); // true

该方法的第二个参数表示搜索的起始位置,默认为0。如果第二个参数为负数,则表示倒数的位置,如果这时它大于数组长度(比如第二个参数为-4,但数组长度为3),则会重置为从0开始

[1, 2, 3].includes(3, 3); // false
[1, 2, 3].includes(3, -1); // true

indexOf 方法有两个缺点,一是不够语义化,它的含义是找到参数值的第一个出现位置,所以要去比较是否不等于-1,表达
起来不够直观。二是,它内部使用严格相当运算符(===)进行判断,这会导致对 NaN 的误判
includes 使用的是不一样的判断算法,就没有这个问题

[NaN].indexOf(NaN)
// -1
[NaN].includes(NaN)
// true

检查当前环境是否支持该方法,如果不支持,部署一个简易的替代版本

const contains = (() =>
   Array.prototype.includes? (arr, value) => arr.includes(value): (arr, value) => arr.some(el => el === value)
)();
contains(["foo", "bar"], "baz"); // => false

Map和Set数据结构有一个 has 方法,需要注意与 includes 区分

  • Map结构的 has 方法,是用来查找键名的,比如 Map.prototype.has(key) 、 WeakMap.prototype.has(key) 、 Reflect.has(target, propertyKey) 。
  • Set结构的 has 方法,是用来查找值的,比如 Set.prototype.has(value) 、 WeakSet.prototype.has(value) 。

数组的空位

数组的空位指,数组的某一个位置没有任何值
Array(3) 返回一个具有3个空位的数组。空位不是 undefined ,一个位置的值等于 undefined ,依然是有值的。空位是没有任何值, in 运算符可以说明这一点
第一个数组的0号位置是有值的,第二个数组的0号位置没有值

0 in [undefined, undefined, undefined] // true
0 in [, , ,] // false

ES5对空位的处理

  • forEach() , filter() , every() 和 some() 都会跳过空位。
  • map() 会跳过空位,但会保留这个值
  • join() 和 toString() 会将空位视为 undefined ,而 undefined 和 null 会被处理成空字符串
// forEach方法
[,'a'].forEach((x,i) => log(i)); // 1
// filter方法
['a',,'b'].filter(x => true) // ['a','b']
// every方法
[,'a'].every(x => x==='a') // true
// some方法
[,'a'].some(x => x !== 'a') // false
// map方法
[,'a'].map(x => 1) // [,1]
// join方法
[,'a',undefined,null].join('#') // "#a##"
// toString方法
[,'a',undefined,null].toString() // ",a,,"

ES6则是明确将空位转为 undefined

Array.from(['a',,'b'])
// [ "a", undefined, "b" ]

[...['a',,'b']]
// [ "a", undefined, "b" ]

copyWithin() 会连空位一起拷贝

[,'a','b',,].copyWithin(2,0) // [,"a",,"a"]

fill() 会将空位视为正常的数组位置

new Array(3).fill('a') // ["a","a","a"]

for...of 循环也会遍历空位

let arr = [, ,];
for (let i of arr) {
   console.log(1);
}
// 1
// 1

数组 arr 有两个空位, for...of 并没有忽略它们。如果改成 map 方法遍历,空位是会跳过的。
entries() 、 keys() 、 values() 、 find() 和 findIndex() 会将空位处理成 undefined 。

// entries()
[...[,'a'].entries()] // [[0,undefined], [1,"a"]]
// keys()
[...[,'a'].keys()] // [0,1]
// values()
[...[,'a'].values()] // [undefined,"a"]
// find()
[,'a'].find(x => true) // undefined
// findIndex()
[,'a'].findIndex(x => true) // 0

由于空位的处理规则非常不统一,所以建议避免出现空位

你可能感兴趣的:(ECMAScript数组扩展)