目录
创建数组静态方法 ES6
Array.from()
Array.of()
检测数组方法
instanceof
Array.isArray()
迭代器方法 ES6
keys()
values()
entries()
复制和填充方法 ES6
Array.fill()
Array.copyWithin()
转化方法
Array.valueOf()
Array.toString()
Array.toLocaleString()
Array.join()
栈方法
push()和pop()
队列方法
shift() 和 unshift()
排序方法
reverse()
sort()
操作方法
Array.concat()
Array.slice()
Array.splice()
搜索和位置方法
严格相等
断言函数
迭代方法
Array.forEach()
Array.map()
Array.filter()
Array.every()
Array.some()
归并方法
Array.reduce()和 Array.reduceRight()
Array.from({ length: 10 }, (item, index) => index); //[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Array.of((1,2,3,4,5)); //[1, 2, 3, 4, 5]
value instanceof Array
Array.isArray(value)
const lazy = ['one', 'two', 'three', 'four'];
Array.from(lazy.keys); //[0, 1, 2, 3]
Array.from(lazy.values); //["one", "two", "three", "four"]
Array.from(lazy.entries()); //[[0, "one"][1, "two"][2, "three"][3, "four"]]
const zeroes = [0, 0, 0, 0, 0];
// 用5填充整个数组
zeroes.fill(5); //[5, 5, 5, 5, 5]
zeroes.fill(0); // 重置
// 用6填充索引大于等于3的元素
zeroes.fill(6, 3); //[0, 0, 0, 6, 6]
zeroes.fill(0); // 重置
// 用7填充大于等于1且小于3的元素
zeroes.fill(7, 1, 3); //[0, 7, 7, 0, 0]
zeroes.fill(0); // 重置
// 用8填充索引大于等于1且小于4的元素
// (-4 + zeroes.length = 1)
// (-1 + zeroes.length = 4)
zeroes.fill(8, -4, -1); //[0, 8, 8, 8, 0]
zeroes.fill(0); // 重置
// fill() 静默忽略超出数组边界、零长度及方向相反的索引范围
// 索引过低,忽略
zeroes.fill(1, -10, -6); //[0, 0, 0, 0, 0]
// 索引过高忽略
zeroes.fill(1, 10, 15); //[0, 0, 0, 0, 0]
// 索引反向,忽略
zeroes.fill(2, 4, 2); //[0, 0, 0, 0, 0]
// 索引部分可用,填充可用部分
zeroes.fill(4, 3, 10); //[0, 0, 0, 4, 4]
let ints;
reset = () => ints = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9];
reset(); //重置
// 从ints中复制0开始的内容,插入到索引5的位置
// 在源索引或目标索引到达数组边界时停止
ints.copyWithin(5); //[0, 1, 2, 3, 4, 0, 1, 2, 3, 4]
reset(); // 重置
// 从ints中复制索引5开始的内容,插入到索引0开始的位置
ints.copyWithin(0, 5); //[5, 6, 7, 8, 9, 5, 6, 7, 8, 9]
reset(); // 重置
// 从ints中复制索引0开始到索引3结束的内容
// 插入到索引4的位置
ints.copyWithin(4, 0, 3); //[0, 1, 2, 3, 0, 1, 2, 7, 8, 9]
reset(); // 重置
// JavaScript 引擎在插值钱回完整复制范围内的值
// 因此复制期间不存在重写的风险
ints.copyWithin(2, 0, 6); //[0, 1, 0, 1, 2, 3, 4, 5, 8, 9]
reset(); // 重置
// 支持负索引值,与fill()相对于数组末尾计算正向索引的过程是一样的
ints.copyWithin(-4, -7, -3); //[0, 1, 2, 3, 4, 5, 3, 4, 5, 6]
let colors = ['red', 'blue', 'yellow'];
colors.valueOf(); // ["red", "blue", "yellow"]
colors.toString(); // "red,blue,yellow"
colors.toLocaleString(); // 'red,blue,yellow'
let arr = [1, 2, 3];
console.log(arr.join()); // 1,2,3
console.log(arr.join("-")); // 1-2-3
console.log(arr); // [1, 2, 3](原数组不变)
实现重复字符串
function repeatString(str, n) {
return new Array(n + 1).join(str);
}
console.log(repeatString("abc", 3)); // abcabcabc
console.log(repeatString("Hi", 5)); // HiHiHiHiHi
注意,如果数组中的某一项是 null 或 undefined, 则在 join() toLocaleString() toString() valueOf() 返回的结果以空字符串表示
const arr = ["Lily","lucy","Tom","lazy"];
const count = arr.push("Jack","Sean");
console.log(count); // 6
console.log(arr); // ["Lily", "lucy", "Tom", "lazy", "Jack", "Sean"]
const item = arr.pop();
console.log(item); // Sean
console.log(arr); // ["Lily", "lucy", "Tom", "lazy", "Jack"]
const arr = ["Lily", "lucy", "Tom", "lazy"];
const count = arr.unshift("Jack", "Sean");
console.log(count); // 6
console.log(arr); //["Jack", "Sean", "Lily", "lucy", "Tom", "lazy"]
const item = arr.shift();
console.log(item); // Jack
console.log(arr); // ["Sean", "Lily", "lucy", "Tom", "lazy"]
let arr = [13, 24, 51, 3];
console.log(arr.reverse()); //[3, 51, 24, 13]
console.log(arr); //[3, 51, 24, 13](原数组改变)
let arr1 = ["a", "d", "c", "b"];
console.log(arr1.sort()); // ["a", "b", "c", "d"]
let arr2 = [13, 24, 51, 3];
console.log(arr2.sort()); // [13, 24, 3, 51] 两位数字先比较第一位再比较第二位
console.log(arr2); // [13, 24, 3, 51](原数组被改变)
为了解决上述问题,sort()方法可以接收一个比较函数作为参数,以便我们指定哪个值位于哪个值的前面。比较函数接收两个参数
function compare(value1, value2) {
return value1 - value2;
}
let arr = [13, 24, 51, 3];
console.log(arr.sort(compare)); // [3, 13, 24, 51]
如果需要通过比较函数产生降序排序的结果,只要交换比较函数返回的值即可:
function compare(value1, value2) {
return value2 - value1;
}
let arr = [13, 24, 51, 3];
console.log(arr.sort(compare)); // [51, 24, 13, 3]
const arr = [1,3,5,7];
const arrCopy = arr.concat(9,[11,13]);
console.log(arrCopy); //[1, 3, 5, 7, 9, 11, 13]
console.log(arr); // [1, 3, 5, 7](原数组未被修改)
const arrCopy2 = arr.concat([9,[11,13]]);
console.log(arrCopy2); //[1, 3, 5, 7, 9, Array[2]]
console.log(arrCopy2[5]); //[11, 13]
const arr = [1,3,5,7,9,11];
const arrCopy = arr.slice(1);
const arrCopy2 = arr.slice(1,4);
const arrCopy3 = arr.slice(1,-2);
const arrCopy4 = arr.slice(-4,-1);
console.log(arr); //[1, 3, 5, 7, 9, 11](原数组没变)
console.log(arrCopy); //[3, 5, 7, 9, 11]
console.log(arrCopy2); //[3, 5, 7]
console.log(arrCopy3); //[3, 5, 7]
console.log(arrCopy4); //[5, 7, 9]
// arrCopy只设置了一个参数,也就是起始下标为1,所以返回的数组为下标1(包括下标1)开始到数组最后。
// arrCopy2设置了两个参数,返回起始下标(包括1)开始到终止下标(不包括4)的子数组。
// arrCopy3设置了两个参数,终止下标为负数,当出现负数时,将负数加上数组长度的值(6)来替换该位置的数,因此就是从1开始到4(不包括)的子数组。
// arrCopy4中两个参数都是负数,所以都加上数组长度6转换成正数,因此相当于slice(2,5)。
let arr = [1,3,5,7,9,11];
let arrRemoved = arr.splice(0,2);
console.log(arr); //[5, 7, 9, 11]
console.log(arrRemoved); //[1, 3]
let arrRemoved2 = arr.splice(2,0,4,6);
console.log(arr); // [5, 7, 4, 6, 9, 11]
console.log(arrRemoved2); // []
let arrRemoved3 = arr.splice(1,1,2,4);
console.log(arr); // [5, 2, 4, 4, 6, 9, 11]
console.log(arrRemoved3); //[7]
Array.indexOf()和 Array.lastIndexOf()
const arr = [1,3,5,7,7,5,3,1];
console.log(arr.indexOf(5)); //2
console.log(arr.lastIndexOf(5)); //5
console.log(arr.indexOf(5,2)); //2
console.log(arr.lastIndexOf(5,4)); //2
console.log(arr.indexOf("5")); //-1
Array.includes() ES7
const arr = [1,3,5,7,7,5,3,1];
arr.includes(3); // true
arr.includes(4); // false
Array.find()和Array.findIndex()
const people = [
{
name: 'lazy',
age: 25
},
{
name: 'lazy',
age: 23
},
{
name: 'make',
age: 20
}
]
people.find((element, index, array) => element.age > 21); //{name: "lazy", age: 25}
people.findIndex((element, index, array) => element.age > 21); //0
找到匹配项后,这两个方法都不再继续搜索
const arr = [1, 2, 3, 4, 5];
arr.forEach(function(x, index, a){
console.log(x + '|' + index + '|' + (a === arr));
});
// 输出为:
// 1|0|true
// 2|1|true
// 3|2|true
// 4|3|true
// 5|4|true
const arr = [1, 2, 3, 4, 5];
const arr2 = arr.map(function(item){
return item*item;
});
console.log(arr2); //[1, 4, 9, 16, 25]
const arr = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
const arr2 = arr.filter(function(x, index) {
return index % 3 === 0 || x >= 8;
});
console.log(arr2); //[1, 4, 7, 8, 9, 10]
const arr = [1, 2, 3, 4, 5];
const arr2 = arr.every(function(x) {
return x < 10;
});
console.log(arr2); //true
const arr3 = arr.every(function(x) {
return x < 3;
});
console.log(arr3); // false
const arr = [1, 2, 3, 4, 5];
const arr2 = arr.some(function(x) {
return x < 3;
});
console.log(arr2); //true
const arr3 = arr.some(function(x) {
return x < 1;
});
console.log(arr3); // false
这两个方法都会实现迭代数组的所有项,然后构建一个最终返回的值。reduce()方法从数组的第一项开始,逐个遍历到最后。而 reduceRight() 则从数组的最后一项开始,向前遍历到第一项。
这两个方法都接收两个参数:
传给 reduce()和 reduceRight() 的函数接收 4 个参数:前一个值、当前值、项的索引和数组对象。这个函数返回的任何值都会作为第一个参数自动传给下一项。第一次迭代发生在数组的第二项上,因此第一个参数是数组的第一项,第二个参数就是数组的第二项。
下面代码用 reduce() 实现数组求和,数组一开始加了一个初始值10。
const values = [1,2,3,4,5];
const sum = values.reduceRight(function(prev, cur, index, array){
return prev + cur;
},10);
console.log(sum); //25