1、 扩展运算符

  扩展运算符(spread)是三个点(...)。它好比 rest 参数的逆运算,将一个数组转为用逗号分隔的参数序列。 扩展运算符背后调用的是遍历器接口(Symbol.iterator),如果一个对象没有部署这个接口,就无法转换。

注意:扩展运算符(spread)是三个点(...)。它好比 rest 参数的逆运算,将一个数组转为用逗号分隔的参数序列。本质上就是rest参数

console.log([1,2,3])// 1 2 3
1

扩展运算符的应用

  1、 替代函数的apply用法

// ES5 的写法
function f(x, y, z) {
	// ...
}
var args = [0, 1, 2];
f.apply(null, args);
// ES6的写法
function f(x, y, z) {
	// ...
}
let args = [0, 1, 2];
f(...args);
1
2
3
4
5
6
7
8
9
10
11
12

  2、求取数组中的最大值:

// ES5 的写法
Math.max.apply(null, [14, 3, 77])
// ES6 的写法
Math.max(...[14, 3, 77])
// 等同于
Math.max(14, 3, 77);
1
2
3
4
5
6

  3、 简化push函数的用法

// ES5的 写法
var arr1 = [0, 1, 2];
var arr2 = [3, 4, 5];
Array.prototype.push.apply(arr1, arr2);
// ES6 的写法
let arr1 = [0, 1, 2];
let arr2 = [3, 4, 5];
arr1.push(...arr2);
1
2
3
4
5
6
7
8

  4、 复制数组

const a1 = [1, 2];
// 写法一
const a2 = [...a1];
// 写法二
const [...a2] = a1;
//写法一二相当于把数组中a1的元素复制到a2中
const a1 = [1, 2];
const a2 = a1.concat();
a2[0] = 2;
a1 // [1, 2]
//上面两个方法修改a2都不会对a1产生影响。   
1
2
3
4
5
6
7
8
9
10
11

  5、 合并数组

const arr1 = ['a', 'b'];
const arr2 = ['c'];
const arr3 = ['d', 'e'];
// ES5 的合并数组
arr1.concat(arr2, arr3);
// [ 'a', 'b', 'c', 'd', 'e' ]
// ES6 的合并数组
[...arr1, ...arr2, ...arr3]
// [ 'a', 'b', 'c', 'd', 'e' ]
这两种方法都是浅拷贝,使用的时候需要注意。

const a1 = [{ foo: 1 }];
const a2 = [{ bar: 2 }];
const a3 = a1.concat(a2);
const a4 = [...a1, ...a2];
console.log(a3[0] === a1[0]) // true 指向相同的内存地址
console.log(a4[0] === a1[0]) // true 指向相同的内存地址
a3[0].foo=2;
console.log(a1)//{foo: 2}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

  a3和a4是用两种不同方法合并而成的新数组,但是它们的成员都是对原数组成员的引用,这就是浅拷贝。如果修改了原数组的成员,会同步反映到新数组。

  6、 与解构赋值结合

const [first, ...rest] = [1, 2, 3, 4, 5];
console.log(first); // 1
console.log(rest)  // [2, 3, 4, 5]
const [first, ...rest] = [];
console.log(first) // undefined
console.log(rest)  // []
const [first, ...rest] = ["foo"];
console.log(first)  // "foo"
console.log(rest)   // []
1
2
3
4
5
6
7
8
9

将扩展运算符用于数组赋值,只能放在参数的最后一位,否则会报错。跟rest参数一样。

const [...butLast, last] = [1, 2, 3, 4, 5];// 报错
const [first, ...middle, last] = [1, 2, 3, 4, 5];//报错,Rest element must be last element
1
2

  7、 将字符串转换为数组

  扩展运算符还可以将字符串转为真正的数组。

[...'hello']; // [ "h", "e", "l", "l", "o" ]
[...'hello'].length;//5
1
2

  8、 实现了 Iterator 接口的对象

  任何定义了遍历器(Iterator)接口的对象,都可以用扩展运算符转为真正的数组。

let nodeList = document.querySelectorAll('div');
let array = [...nodeList];//实现了Iterator接口
let arrayLike = {
	'0': 'a',
	'1': 'b',
	'2': 'c',
	length: 3
};
let arr = [...arrayLike];// // TypeError: Cannot spread non-iterable object.
//可以改成下面这样
let arr=Array.form(arrayLike)//把对象变成数组,把类似数组的变成数组
1
2
3
4
5
6
7
8
9
10
11

  map结构

let map = new Map([
	[1, 'one'],
	[2, 'two'],
	[3, 'three'],
]);
let arr = [...map.keys()]; // [1, 2, 3]
1
2
3
4
5
6

  Generator 函数

const go = function*(){
	yield 1;
	yield 2;
	yield 3;
};
[...go()] // [1, 2, 3]
1
2
3
4
5
6

2、 Array.from()

  Array.from方法用于将两类对象转为真正的数组:类似数组的对象(array-like object)和可遍历(iterable)的对象(包括 ES6 新增的数据结构 Set 和 Map)。
任何有length属性的对象,都可以通过Array.from方法转为数组,而此时扩展运算符就无法转换。

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

  1、类似于数组的对象

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']
1
2
3
4
5
6
7
8
9
10

  2、可遍历的对象:

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

  3、不支持该方法的浏览器,可以用下面这种方法来进行兼容:

const toArray =Array.from ? Array.from : [].slice.call
1

  4、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]
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)
1
2
3
4
5
6
7
8
9

  5、Array.from()可以将各种值转为真正的数组。

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

  6、将字符串转为数组,然后返回字符串的长度

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

3、 Array.of()

  用于将一组值,转换为数组。这个方法的主要目的,是弥补数组构造函数Array()的不足。Array.of基本上可以用来替代Array()或new Array()。

Array() // []
Array(3) // [, , ,]
Array(3, 11, 8) // [3, 11, 8]
Array.of(3, 11, 8) // [3,11,8]
Array.of(3) // [3]
Array.of(3).length // 1
1
2
3
4
5
6

4、 copywithin()

  数组实例的copyWithin方法,在当前数组内部,将指定位置的成员复制到其他位置(会覆盖原有成员),然后返回当前数组。

Array.prototype.copyWithin(target, start = 0, end = this.length)
1

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

[1, 2, 3, 4, 5].copyWithin(0, 3)// [4, 5, 3, 4, 5]
//上面代码表示将从 3 号位直到数组结束的成员(4 和 5),复制到从 0 号位开始的位置,结果覆盖了原来的 1 和 2。
[1, 2, 3, 4, 5].copyWithin(0, 2)// [3, 4, 5, 4, 5]
[1, 2, 3, 4, 5].copyWithin(0, 2,3)// [3, 2, 3, 4, 5]
1
2
3
4

5、 find()和findIndex()

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

[1, 4, -5, 10].find((n) => n < 0)// -5
[1, 5, 10, 15].find(function(value, index, arr) {
	return value > 9;
}) // 10
1
2
3
4

  数组实例的findIndex(),返回第一个符合条件的数组成员的位置,如果所有成员都不符合条件,则返回-1。

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

  这两个方法都可以接受第二个参数,用来绑定回调函数的this对象。

function f(v){
	return v > this.age;
}
let person = {name: 'John', age: 20};
[10, 12, 26, 15].find(f, person);    // 26
1
2
3
4
5

  这两个方法都可以发现NaN,弥补了数组的indexOf方法的不足。

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

  Object.is()用来比较两个值是否严格相等,与严格相等运算符(===)一样。

6、 fill()

//使用给定值,填充一个数组,并返回填充后的数组。
['a', 'b', 'c'].fill(7)
// [7, 7, 7]
new Array(3).fill(7)
// [7, 7, 7]
1
2
3
4
5

  数组中已有的元素,会被全部抹去。 fill方法还可以接受第二个和第三个参数,用于指定填充的起始位置和结束位置。这根splice()很像,只是splice方法没有返回值。

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

注意: 如果填充的类型为对象,那么被赋值的是同一个内存地址的对象,而不是深拷贝对象。

let arr = new Array(3).fill({name: "Mike"});
arr[0].name = "Ben";
console.log(arr)// [{name: "Ben"}, {name: "Ben"}, {name: "Ben"}]
1
2
3

7、entries()、keys()、values()

  它们都返回一个遍历器对象(Iterator),可以用for...of循环进行遍历。 ```js let letter = ['a', 'b', 'c']; let keys=letter.keys(); let values=letter.values() let entries = letter.entries(); console.log(keys,values,entries) // Array Iterator {} Array Iterator {} Array Iterator {} for (let index of keys) { console.log(index); } //0, //1,//2 ```

8、 includes()

  返回一个布尔值,表示某个数组是否包含给定的值,与字符串的includes方法类似。

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

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

indexOf方法有两个缺点。

1、不够语义化,它的含义是找到参数值的第一个出现位置,所以要去比较是否不等于-1。
2、它内部使用严格相等运算符(===)进行判断,这会导致对NaN的误判。

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

  可以用如下方法来判断当前环境是否支持该方法。

const contains = (() =>
	Array.prototype.includes ?
	(arr, value) => arr.includes(value) :
	(arr, value) => arr.some(el => el === value)
)();
console.log(contains(['foo', 'bar'], 'baz')); // => false        
1
2
3
4
5
6

9、 flat()、flatMap()

  用于将嵌套的数组“拉平”,变成一维的数组。该方法返回一个新数组,对原数据没有影响。flat()默认只会“拉平”一层,如果想要“拉平”多层的嵌套数组,可以将flat()方法的参数写成一个整数,表示想要拉平的层数,默认为1。

[1, 2, [3, [4, 5]]].flat()     // [1, 2, 3, [4, 5]]
[1, 2, [3, [4, 5]]].flat(2)    // [1, 2, 3, 4, 5]
[1, [2, [3]]].flat(Infinity)   // [1, 2, 3],这种方式不管嵌套多少层,都会被拉平。
1
2
3

  如果原数组有空位,flat()方法会跳过空位。

[1, 2, , 4, 5].flat()    // [1, 2, 4, 5]
1

  flatMap()方法对原数组的每个成员执行一个函数(相当于执行Array.prototype.map()),然后对返回值组成的数组执行flat()方法。该方法返回一个新数组,不改变原数组。flatMap()只能展开一层数组。

// 相当于 [[[2]], [[4]], [[6]], [[8]]].flat()
[1, 2, 3, 4].flatMap(x => [[x * 2]])
// [[2], [4], [6], [8]]
1
2
3

10、 数组的空位

  注意,空位不是undefined,一个位置的值等于undefined,依然是有值的。空位是没有任何值。

ES5:

1、forEach(), filter(), reduce(), every() 和some()都会跳过空位。
2、map()会跳过空位,但会保留这个值。
3、join()和toString()会将空位视为undefined,而undefined和null会被处理成空字符串。

ES6:明确将空位转为undefined。

Last Updated: 3/16/2020, 6:57:04 PM