GitHub (opens new window)

数组的扩展

PPG007 ... 2021-12-26 About 1 min

# 数组的扩展

# 扩展运算符

扩展运算符是三个点,将一个数组变为参数序列:

console.log(...[1, 2, 3, 4]);
function push(array, ...items) {
  array.push(...items)
  for (const x of array) {
    console.log(x);
  }
}
function add(x, y) {
  return x + y
}
push([], ...[1, 2, 3, 4])
console.log(add(...[4, 3, 2, 1]));
1
2
3
4
5
6
7
8
9
10
11
12

扩展运算符的应用:

let a1 = [1, 2, 3, 4]
let a2 = [...a1]
1
2
a1 = [{foo: 1}]
a2 = [{bar: 2}]
a3 = [...a1, ...a2]
1
2
3
const [first, ...rest] = [1, 2, 3, 4, 5]
1
console.log([...'hello']);
1
function User(name) {
  this.name=name
}

User.prototype[Symbol.iterator] = function *() {
  let i = 0;
  while (i < 10) {
    ++i
    yield this.name
  }
}
console.log([...new User('PPG')]);
1
2
3
4
5
6
7
8
9
10
11
12

# 数组实例的 find() 和 findIndex()

# 数组实例的 includes()

此方法返回一个布尔值,表示某个数组是否包含给定的值。该方法可以接受第二个参数表示搜索的起始位置,如果是负数就表示倒数的位置。