Skip to content

Latest commit

 

History

History
116 lines (91 loc) · 3.03 KB

3.Array数组扩展.md

File metadata and controls

116 lines (91 loc) · 3.03 KB

解构赋值

数组解构赋值对应数组下标

// 数组的解构赋值
let [a, b, c] = [1, 2, 3];

扩展运算符 ...

如同rest参数的逆运算,可以将一个数组转为用逗号分隔的参数序列

注意:通过扩展运算符实现的是浅拷贝

console.log(...[1,2,3,4,5,6,7]); //1,2,3,4,5,6,7

构造函数新增的方法

map: 遍历数组,返回值组成新的数组 forEach: 遍历数组,无法break,可以用try/catch中throw new Error来停止 filter:过滤 some: 有一项true,则为true every: 有一个false,则为false

Array.from()

将类数组的对象和可遍历对象转为真正的数组
  let arrayLike = {
    '0': 'a',
    '1': 'b',
    '2': 'c',
    length: 3
  };
  let arr2 = Array.from(arrayLike); // ['a', 'b', 'c']

  // 接受第二个参数,用来对每个元素进行处理,将处理后的值放入返回的数组
  Array.from([1, 2, 3], (x) => x * x); // [1, 4, 9]

Array.of()

用于将一组值,转换为数组,没有参数的时候,返回一个空数组,参数只有一个的时候,实际上是指定数组的长度
  Array() // []
  Array(3) // [, , ,]
  Array(3, 11, 8) // [3, 11, 8]

实例对象新增的方法

find()、findIndex()

 // 找出第一个符合条件的数组成员
  [1, 5, 10, 15].find(function(value, index, arr) {
    return value > 9;
  }) // 10

  // 返回第一个符合条件的数组成员的位置,都不符合返回-1
  [1, 5, 10, 15].findIndex(function(value, index, arr) {
    return value > 9;
  }) // 2

includes()

  // 判断数组是否包含给定的值
  [1, 2, 3].includes(2)     // true

fill()

  // 使用给定值,填充一个数组,第二个和第三个参数,用于指定填充的起始位置和结束位置
  ['a', 'b', 'c'].fill(7) // [7, 7, 7]
  ['a', 'b', 'c'].fill(7, 1, 2) // ['a', 7, 'c']

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"

flat()

  // 将数组扁平化处理,返回一个新数组,对原数据没有影响
  // flat可传入想要拉平的层数,默认是1
  [1, 2, [3, 4]].flat() // [1, 2, 3, 4]

flatMap()

// 有点像map,执行每一个成员并返回值,对返回值组成的新数组执行 flat()
// 返回一个新数组,对原数据没有影响
// 相当于 [[2, 4], [3, 6], [4, 8]].flat()
[2, 3, 4].flatMap((x) => [x, x * 2])
// [2, 4, 3, 6, 4, 8]

数组的空位

ES6 则是明确将空位转为undefined