ECMAScript 6(四)

数组的扩展

Posted by     "Jordon Li" on Friday, December 20, 2019

TOC

ECMAScript 6 简介

ECMAScript 6.0(以下简称 ES6)是 JavaScript 语言的下一代标准,已经在 2015 年 6 月正式发布了。它的目标,是使得 JavaScript 语言可以用来编写复杂的大型应用程序,成为企业级开发语言。

数组的扩展

扩展运算符

  • 基本用法: 扩展运算符(spread)是三个点(...)。它好比 rest 参数的逆运算,将一个数组转为用逗号分隔的参数序列。
    console.log(...[1, 2, 3])
    // 1 2 3
    
    function add(x, y) {
      return x + y;
    }
    
    const numbers = [4, 38];
    add(...numbers) // 42
    
    //Generator 函数运行后,返回一个遍历器(Iterator)对象,因此也可以使用扩展运算符。
    const go = function*(){
      yield 1;
      yield 2;
      yield 3;
    };
    
    [...go()] // [1, 2, 3]
    

Array.from()

  • 基本用法: Array.from方法用于将两类对象转为真正的数组:
    • 类似数组的对象(array-like object),所谓类似数组的对象,本质特征只有一点,即必须有length属性。
    • 可遍历(iterable)的对象(包括 ES6 新增的数据结构 SetMap)。
let arrayLike = {
    '0': 'a',
    '1': 'b',
    '2': 'c',
    length: 3
};
let arr2 = Array.from(arrayLike); // ['a', 'b', 'c']

Array.from('hello')
// ['h', 'e', 'l', 'l', 'o']

let namesSet = new Set(['a', 'b'])
Array.from(namesSet) // ['a', 'b']

//Array.from还可以接受第二个参数,作用类似于数组的map方法
Array.from(arrayLike, x => x * x);
// 等同于
Array.from(arrayLike).map(x => x * x);

Array.of()

  • 基本用法: Array.of方法用于将一组值,转换为数组。这个方法的主要目的,是弥补数组构造函数Array()的不足。因为参数个数的不同,会导致Array()的行为有差异。
//Array()
Array() // []
Array(3) // [, , ,]
Array(3, 11, 8) // [3, 11, 8]

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

实例方法

copyWithin()

  • 基本用法: 在当前数组内部,将指定位置的成员复制到其他位置(会覆盖原有成员),然后返回当前数组。使用这个方法,会修改当前数组。
//target(必需):目标位置——从该位置开始替换数据。如果为负值,表示倒数。
//start(可选):开始位置——从该位置开始读取数据(开始索引),默认为 0。如果为负值,表示从末尾开始计算。
//end(可选):结束位置——到该位置前停止读取数据(结束索引,不包含结束索引的值),默认等于数组长度。如果为负值,表示从末尾开始计算。
Array.prototype.copyWithin(target, start = 0, end = this.length)

[1, 2, 3, 4, 5].copyWithin(0, 3)
// [4, 5, 3, 4, 5]

[1, 2, 3, 4, 5].copyWithin(0, -2, -1)
// [4, 2, 3, 4, 5]

find() 和 findIndex()

  • 基本用法:
    • find:用于找出第一个符合条件的数组成员。
    • findIndex:返回第一个符合条件的数组成员的索引,如果所有成员都不符合条件,则返回-1
[1, 4, -5, 10].find((n) => n < 0)
// -5

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

//另外,这两个方法都可以发现`NaN`,弥补了数组的`indexOf`方法的不足。
[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']

//如果填充的类型为对象,那么被赋值的是同一个内存地址的对象,而不是深拷贝对象。
let arr = new Array(3).fill({name: "Mike"});
arr[0].name = "Ben";
arr
// [{name: "Ben"}, {name: "Ben"}, {name: "Ben"}]

let arr = new Array(3).fill([]);
arr[0].push(5);
arr
// [[5], [5], [5]]

entries(),keys() 和 values()

  • 基本用法: 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']

includes()

  • 基本用法: Array.prototype.includes方法返回一个布尔值,表示某个数组是否包含给定的值,与字符串的includes方法类似。
[1, 2, 3].includes(2)     // true
[1, 2, NaN].includes(NaN) // true

//该方法的第二个参数表示搜索的起始位置,默认为0.
//如果第二个参数为负数,则表示倒数的位置.
//如果这时它大于数组长度,则会重置为从0开始.
[1, 2, 3].includes(3, 3);  // false
[1, 2, 3].includes(3, -1); // true
  • MapSet数据结构的has方法的区分:
    • Map 结构的has方法,是用来查找键名的。
    • Set 结构的has方法,是用来查找值的。

flat(),flatMap()

  • 基本用法:
    • flat():数组的成员有时还是数组,Array.prototype.flat()用于将嵌套的数组“拉平”,变成一维的数组。该方法返回一个新数组,对原数据没有影响。
    • flatMap():对原数组的每个成员执行一个函数(相当于执行Array.prototype.map()),然后对返回值组成的数组执行flat()方法。该方法返回一个新数组,不改变原数组。
//flat()
[[1, 2, [3, 4]].flat() // [1, 2, 3, 4]

//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]

//如果不管有多少层嵌套,都要转成一维数组,可以用Infinity关键字作为参数。
[1, [2, [3]]].flat(Infinity) // [1, 2, 3]

//如果原数组有空位,flat()方法会跳过空位。
[1, 2, , 4, 5].flat() // [1, 2, 4, 5]

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

//flatMap()只能展开一层数组。
[1, 2, 3, 4].flatMap(x => [[x * 2]]) // 相当于 [[[2]], [[4]], [[6]], [[8]]].flat()
// [[2], [4], [6], [8]]

数组的空位

  • 基本用法: 数组的空位指,数组的某一个位置没有任何值。注意,空位不是undefined,一个位置的值等于undefined,依然是有值的。空位是没有任何值,in运算符可以说明这一点。ES6 明确将空位转为undefined
//index: 0
0 in [undefined, undefined, undefined] // true
0 in [, , ,] // false

Array.prototype.sort() 的排序稳定性

  • 基本用法: 排序稳定性(stable sorting)是排序算法的重要属性,指的是排序关键字相同的项目,排序前后的顺序不变。 早先的 ECMAScript 没有规定Array.prototype.sort()的默认排序算法是否稳定,留给浏览器自己决定,这导致某些实现是不稳定的。 ES2019 明确规定,Array.prototype.sort()的默认排序算法必须稳定。现在 JavaScript 各个主要实现的默认排序算法都是稳定的。

「下次一定」

下次一定

使用微信扫描二维码完成支付