js数组方法详解(最新最全)
数组是js中最常用到的数据集合,其内置的方法有很多,熟练掌握这些方法,可以有效的提高我们的工作效率,同时对我们的代码质量也是有很大影响。本文所有的栗子都是在es7环境下测试的,如果有问题欢迎留言交流
创建数组
我将创建数组的方式分为以下四大类
一、字面量方式
使用对象字面量方式创建数组是我们最常用的一种方式
const array1 = [1, 2, 3, 4, 5];
二、使用array构造方法
无参构造
使用无参构造可以创建一个长度为0的空数组
const array1 = new array();
带参构造
- 如果只传一个数值参数,则表示创建一个初始长度为指定数值的空数组
const array2 = new array(3);
- 如果传入一个非数值的参数或者参数个数大于1,则表示创建一个包含指定元素的数组
const array3 = new array(1, 2, 3, 'array'); // [1, 2, 3, "array"] const array4 = new array('23'); // ["23"]
三、array.of方法创建数组(es6新增)
es6为数组新增创建方法的目的之一,是帮助开发者在使用array构造器时避开js语言的一个怪异点。array.of()方法总会创建一个包含所有传入参数的数组,而不管参数的数量与类型。
let arr = array.of(1, 2); console.log(arr.length);//2 let arr1 = array.of(3); console.log(arr1.length);//1 console.log(arr1[0]);//3 let arr2 = array.of('2'); console.log(arr2.length);//1 console.log(arr2[0]);//'2'
在使用array.of()方法创建数组时,只需将想要包含在数组内的值作为参数传入。
四、array.from方法创建数组(es6新增)
在js中将非数组对象转换为真正的数组是非常麻烦的。在es6中,将可迭代对象或者类数组对象作为第一个参数传入,array.from()就能返回一个数组。
function arga(...args) { let arg = array.from(arguments); console.log(arg); } arga('arr1', 26, 'from'); // ['arr1',26,'from']
映射转换
如果你想实行进一步的数组转换,你可以向array.from()方法传递一个映射用的函数作为第二个参数。此函数会将数组对象的每一个值转换为目标形式,并将其存储在目标数组的对应位置上。
function arga(...args) { return array.from(arguments, value => value + 1); } let arr = arga('arr', 26, 'pop'); console.log(arr);//['arr1',27,'pop1']
如果映射函数需要在对象上工作,你可以手动传递第三个参数给array.from()方法,从而指定映射函数内部的this值
const helper = { diff: 1, add(value) { return value + this.diff; } } function translate() { return array.from(arguments, helper.add, helper); } let arr = translate('liu', 26, 'man'); console.log(arr); // ["liu1", 27, "man1"]
数组方法
创建数组完成之后,接下来我们就来看一下数组中的每一个方法是什么功能及其详细用法。下面的方法是按照字母顺序写的
concat
concat() 方法用于连接两个或多个数组。
该方法不会改变现有的数组,而仅仅会返回被连接数组的一个副本。
const array1 = [22, 3, 31, 12]; const array2 = [19, 33, 20]; const newarray = array1.concat(10, array2, 9); console.log(array1); // [22, 3, 31, 12] console.log(newarray); // [22, 3, 31, 12, 10, 19, 33, 20, 9]
通过上面的例子可以看出:concat传入的参数可以是具体的值,也可以是数组对象。可以是任意多个。
copywithin(es6新增)
copywithin() 方法用于从数组的指定位置拷贝元素到数组的另一个指定位置中。
该方法会改变现有数组
//将数组的前两个元素复制到数组的最后两个位置 let arr = [1, 2, 3, 'arr', 5]; arr.copywithin(3, 0); console.log(arr);//[1,2,3,1,2]
默认情况下,copywithin()方法总是会一直复制到数组末尾,不过你还可以提供一个可选参数来限制到底有多少元素会被覆盖。这第三个参数指定了复制停止的位置(不包含该位置本身)。
let arr = [1, 2, 3, 'arr', 5, 9, 17]; //从索引3的位置开始粘贴 //从索引0的位置开始复制 //遇到索引3时停止复制 arr.copywithin(3, 0, 3); console.log(arr);//[1,2,3,1,2,3,17]
every
every()方法用于判断数组中每一项是否都满足条件,只有所有项都满足条件,才会返回true。
const array1 = [22, 3, 31, 12]; const isright1 = array1.every((v, i, a) => { return v > 1; }); const isright2 = array1.every((v, i, a) => { return v > 10; }); console.log(isright1); // true console.log(isright2); // false
fill(es6新增)
fill()方法能使用特定值填充数组中的一个或多个元素。当只是用一个参数时,该方法会用该参数的值填充整个数组。
let arr = [1, 2, 3, 'cc', 5]; arr.fill(1); console.log(arr);//[1,1,1,1,1];
如果不想改变数组中的所有元素,而只是想改变其中一部分,那么可以使用可选的起始位置参数与结束位置参数(不包括结束位置的那个元素)
let arr = [1, 2, 3, 'arr', 5]; arr.fill(1, 2); console.log(arr);//[1,2,1,1,1] arr.fill(0, 1, 3); console.log(arr);//[1,0,0,1,1];
filter
filter() 方法创建一个新的数组,新数组中的元素是通过检查指定数组中符合条件的所有元素。该方法不会改变原数组
const array1 = [22, 3, 31, 12]; const array2 = array1.filter((v, i, a) => { if (v > 13) { return v; } }); console.log(array1); // [22, 3, 31, 12] console.log(array2); // [22, 31]
find()与findindex()(es6新增)
find()与findindex()方法均接受两个参数:一个回调函数,一个可选值用于指定回调函数内部的this。该回调函数可接受三个参数:数组的某个元素,该元素对应的索引位置,以及该数组本身。该回调函数应当在给定的元素满足你定义的条件时返回true,而find()和findindex()方法均会在回调函数第一次返回true时停止查找。
二者唯一的区别是:find()方法返回匹配的值,而findindex()返回匹配位置的索引。
let arr = [1, 2, 3, 'arr', 5, 1, 9]; console.log(arr.find((value, keys, arr) => { return value > 2; })); // 3 返回匹配的值 console.log(arr.findindex((value, keys, arr) => { return value > 2; })); // 2 返回匹配位置的索引
foreach
foreach() 方法用于调用数组的每个元素,并将元素传递给回调函数。
let sum = 0; const array1 = [22, 3, 31, 12]; array1.foreach((v, i, a) => { sum += v; }); console.log(sum); // 68
includes(es7新增)
includes() 方法用来判断一个数组是否包含一个指定的值,如果是返回 true,否则false。
参数有两个,其中第一个是(必填)需要查找的元素值,第二个是(可选)开始查找元素的位置
const array1 = [22, 3, 31, 12, 'arr']; const includes = array1.includes(31); console.log(includes); // true const includes1 = array1.includes(31, 3); // 从索引3开始查找31是否存在 console.log(includes1); // false
需要注意的是:includes使用===运算符来进行值比较,仅有一个例外:nan被认为与自身相等。
let values = [1, nan, 2]; console.log(values.indexof(nan));//-1 console.log(values.includes(nan));//true
indexof
indexof() 方法可返回数组中某个指定的元素位置。
该方法将从头到尾地检索数组,看它是否含有对应的元素。开始检索的位置在数组 start 处或数组的开头(没有指定 start 参数时)。如果找到一个 item,则返回 item 的第一次出现的位置。开始位置的索引为 0。
如果在数组中没找到指定元素则返回 -1。
参数有两个,其中第一个是(必填)需要查找的元素值,第二个是(可选)开始查找元素的位置
const array1 = [22, 3, 31, 12, 'arr']; const index = array1.indexof(31); console.log(index); // 2 const index1 = array1.indexof(31, 3); console.log(index1); // -1
join
join() 方法用于把数组中的所有元素转换一个字符串。
元素是通过指定的分隔符进行分隔的。默认使用逗号作为分隔符
const array1 = [22, 3, 31, 12, 'arr']; const str = array1.join('~'); console.log(str); // 22~3~31~12~arr const str1 = array1.join(); console.log(str1); // 22,3,31,12,arr
lastindexof
lastindexof() 方法可返回一个指定的元素在数组中最后出现的位置,在一个数组中的指定位置从后向前搜索。
如果要检索的元素没有出现,则该方法返回 -1。
该方法将从尾到头地检索数组中指定元素 item。开始检索的位置在数组的 start 处或数组的结尾(没有指定 start 参数时)。如果找到一个 item,则返回 item 从尾向前检索第一个次出现在数组的位置。数组的索引开始位置是从 0 开始的。
如果在数组中没找到指定元素则返回 -1。
const array1 = [22, 3, 31, 12, 'arr', 19, 31, 56, 43]; const index1 = array1.lastindexof(31); console.log(index1); // 6 const index2 = array1.lastindexof(31, 5); console.log(index2); // 2 const index3 = array1.lastindexof(35); console.log(index3); // -1
map
map() 方法返回一个新数组,数组中的元素为原始数组元素调用函数处理后的值。
map() 方法按照原始数组元素顺序依次处理元素。
该方法不会改变原数组
const array1 = [22, 3, 31, 12, 'arr', 19, 31, 56, 43]; const array2 = array1.map((v, i, a) => { return v + 1; }); console.log(array1); // [22, 3, 31, 12, "arr", 19, 31, 56, 43] console.log(array2); // [23, 4, 32, 13, "arr1", 20, 32, 57, 44]
pop
pop() 方法用于删除数组的最后一个元素并返回删除的元素。
const array1 = [22, 3, 31, 12, 'arr', 19, 31, 56, 43]; const item = array1.pop(); console.log(item); // 43 console.log(array1); // [22, 3, 31, 12, "arr", 19, 31, 56]
push
push()方法从数组末尾向数组添加元素,可以添加一个或多个元素。
const array1 = [22, 3, 31, 12, 'arr', 19, 31, 56, 43]; array1.push(11, 16, 18); console.log(array1); // [22, 3, 31, 12, "arr", 19, 31, 56, 43, 11, 16, 18]
reduce
reduce() 方法接收一个函数作为累加器,数组中的每个值(从左到右)开始缩减,最终计算为一个值。
const array1 = [22, 3, 31, 12]; const sum = array1.reduce((total, number) => { return total + number; }); console.log(sum); // 68
reduceright
reduceright() 方法的功能和 reduce() 功能是一样的,不同的是 reduceright() 从数组的末尾向前将数组中的数组项做累加。
const array1 = [22, 3, 31, 12]; const sum = array1.reduceright((total, number) => { return total + number; }); console.log(sum); // 68
reverse
reverse() 方法用于颠倒数组中元素的顺序。
const array1 = [22, 3, 31, 12]; array1.reverse(); console.log(array1); // [12, 31, 3, 22]
shift
shift() 方法用于把数组的第一个元素从其中删除,并返回第一个元素的值。
const array1 = [22, 3, 31, 12]; const item = array1.shift(); console.log(item); // 22 console.log(array1); // [3, 31, 12]
slice
slice() 方法可从已有的数组中返回选定的元素。
slice()方法可提取字符串的某个部分,并以新的字符串返回被提取的部分。
slice() 方法不会改变原始数组。
const array1 = [22, 3, 31, 12]; const array2 = array1.slice(1, 3); console.log(array1); // [22, 3, 31, 12] console.log(array2); // [3, 31]
some
some() 方法用于检测数组中的元素是否满足指定条件(函数提供)。
some() 方法会依次执行数组的每个元素:
如果有一个元素满足条件,则表达式返回true , 剩余的元素不会再执行检测。
如果没有满足条件的元素,则返回false。
const array1 = [22, 3, 31, 12]; const sometrue1 = array1.some((v, i, a) => { return v == 11; }); const sometrue2 = array1.some((v, i, a) => { return v == 31; }); console.log(sometrue1); // false console.log(sometrue2); // true
sort
sort() 方法用于对数组的元素进行排序。
排序顺序可以是字母或数字,并按升序或降序。
默认排序顺序为按字母升序。
const array1 = [22, 3, 31, 12]; array1.sort((a, b) => { return a > b ? 1 : -1; }); console.log(array1); // 数字升序 [3, 12, 22, 31]
splice
splice() 方法用于添加或删除数组中的元素。
- 删除元素,并返回删除的元素
const array1 = [22, 3, 31, 12]; const item = array1.splice(1, 2); console.log(item); // [3, 31] console.log(array1); // [22, 12]
- 向指定索引处添加元素
const array1 = [22, 3, 31, 12]; array1.splice(1, 0, 12, 35); console.log(array1); // [22, 12, 35, 3, 31, 12]
- 替换指定索引位置的元素
const array1 = [22, 3, 31, 12]; array1.splice(1, 1, 8); console.log(array1); // [22, 8, 31, 12]
tolocalestring和tostring
将数组转换为字符串
const array1 = [22, 3, 31, 12]; const str = array1.tolocalestring(); const str1 = array1.tostring(); console.log(str); // 22,3,31,12 console.log(str1); // 22,3,31,12
unshift
unshift() 方法可向数组的开头添加一个或更多元素,并返回新的长度。
该方法将改变数组的数目。const array1 = [22, 3, 31, 12]; const item = array1.unshift(11); console.log(item); // 5 新数组的长度 console.log(array1); // [11, 22, 3, 31, 12]
上一篇: readonly与disabled的区别