javascript技巧

关注公众号 jb51net

关闭
首页 > 网络编程 > JavaScript > javascript技巧 > es6处理数组方法

es6处理数组的方法汇总(非常详细)

作者:Naive_Jam

ES6中引入了一些新的数组方法,例如:Array.of(),Array.from()等,下面这篇文章主要给大家介绍了关于es6处理数组的方法汇总,需要的朋友可以参考下

创建数组静态方法 ES6

Array.from()

用于将类数组结构转换为数组实例

Array.from({ length: 10 }, (item, index) => index); //[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]

Array.of()

可以把一组参数转换为数组

Array.of((1,2,3,4,5)); //[1, 2, 3, 4, 5]

检测数组方法

instanceof

在只有一个网页(因而只有一个全局作用域)的情况下,使用 instanceof 操作符足以

value instanceof Array

Array.isArray()

如果网页由多个框架,则可能设计两个不同的全局执行上下文,因此会有两个不同版本的 Array 构造函数

Array.isArray(value)

迭代器方法 ES6

const lazy = ['one', 'two', 'three', 'four'];

keys()

返回数组索引的迭代器

Array.from(lazy.keys); //[0, 1, 2, 3]

values()

返回数组元素的迭代器

Array.from(lazy.values); //["one", "two", "three", "four"]

entries()

返回数组元素的迭代器

Array.from(lazy.entries()); //[[0, "one"][1, "two"][2, "three"][3, "four"]]

复制和填充方法 ES6

Array.fill()

向一个已有的数组中插入全部或部分相同的值

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 = 1)
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]

Array.copyWithin()

let ints;
reset = () => ints = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9];
reset(); //重置
 
// 从inits中复制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(); // 重置
 
// 从int中复制索引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'];

Array.valueOf()

返回的还是数组本身

colors.valueOf(); // ["red", "blue", "yellow"]

Array.toString()

返回由每个值的等效字符串拼接而成的一个逗号分隔的字符串

colors.toString(); // "red,blue,yellow"

Array.toLocaleString()

colors.toLocaleString(); // 'red,blue,yellow'

Array.join()

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](原数组不变)

实现重复字符串

通过join()方法可以实现重复字符串,只需传入字符串以及重复的次数,就能返回重复后的字符串,函数如下:

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() 返回的结果以空字符串表示

栈方法

push()和pop() 

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

队列方法

shift() 和 unshift()

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

排序方法

reverse()

反转数组项的顺序

let arr = [13, 24, 51, 3];
console.log(arr.reverse()); //[3, 51, 24, 13]
console.log(arr); //[3, 51, 24, 13](原数组改变)

sort()

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]

操作方法

Array.concat()

将参数添加到原数组中。这个方法会先创建当前数组一个副本,然后将接收到的参数添加到这个副本的末尾,最后返回新构建的数组。在没有给 concat() 方法传递参数的情况下,它只是复制当前数组并返回副本

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]

上述代码中,arrCopy2 数组的第五项是一个包含两项的数组,也就是说concat方法只能将传入数组中的每一项添加到数组中,如果传入数组中有些项是数组,那么也会把这一数组项当作一项添加到 arrCopy2 中

Array.slice()

返回从原数组中指定开始下标到结束下标之间的项组成的新数组

slice() 方法可以接受一或两个参数,即要返回项的起始和结束位置。

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)。

Array.splice()

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

找到匹配项后,这两个方法都不再继续搜索

迭代方法

Array.forEach()

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

Array.map()

const arr = [1, 2, 3, 4, 5];
const arr2 = arr.map(function(item){
    return item*item;
});
console.log(arr2); //[1, 4, 9, 16, 25]

Array.filter()

“过滤”功能,数组中的每一项运行给定函数,返回满足过滤条件组成的数组。

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]

Array.every()

判断数组中每一项都是否满足条件,只有所有项都满足条件,才会返回true。

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

Array.some()

判断数组中是否存在满足条件的项,只要有一项满足条件,就会返回true。

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

归并方法

Array.reduce()和 Array.reduceRight()

这两个方法都会实现迭代数组的所有项,然后构建一个最终返回的值。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

总结

到此这篇关于es6处理数组的方法的文章就介绍到这了,更多相关es6处理数组方法内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文