JavaScript数组常用方法
at()
at()
方法接收一个整数值并返回该索引对应的元素,允许正数和负数。负整数从数组中的最后一个元素开始倒数。
const arr = [5, 12, 8, 130, 44];
console.log(arr[2]); //8
console.log(arr.at(2)); //8
console.log(arr.at(-1)); //44
concat()
concat()
方法用于合并两个或多个数组。此方法不会更改现有数组,而是返回一个新数组。
const arr1 = [1, 2, 3];
const arr2 = ['a', 'b', 'c'];
const arr3 = arr1.concat(99, arr2);
arr1[0] = 5; //不会影响arr3
console.log(arr3); //[1, 2, 3, 99, 'a', 'b', 'c']
every()
every()
方法测试一个数组内的所有元素是否都能通过指定函数的测试,返回一个布尔值。
const arr1 = [1, 30, 39, 29, 10, 13];
const arr2 = [1, 30, 39, 88];
const isBelow50 = (num) => num < 50;
console.log(arr1.every(isBelow50)); //true
console.log(arr2.every(isBelow50)); //false
some()
some()
方法测试数组中是否至少有一个元素能通过指定函数的测试,返回一个布尔值。
const arr1 = [1, 30, 39, 29, 10, 13];
const arr2 = [1, 30, 39, 88];
const isOver80 = (num) => num > 80;
console.log(arr1.some(isOver80)); //false
console.log(arr2.some(isOver80)); //true
fill()
fill()
方法用一个固定值填充数组中从起始索引(默认为0
)到终止索引(默认为array.length
)内的全部元素,返回修改后的数组。
const arr = [1, 2, 3, 4, 5];
// fill(value)
console.log(arr.fill(9)); //[9, 9, 9, 9, 9]
// fill(value, start)
console.log(arr.fill('a', 2)); //[ 9, 9, 'a', 'a', 'a']
arr[0] = 1;
// fill(value, start, end)
console.log(arr.fill('b', 1, 3)); //[1, 'b', 'b', 'a', 'a']
创建指定长度和内容的数组
function getArray(len, val) {
return Array(len).fill(val);
}
console.log(getArray(3, 'some value')); //['some value', 'some value', 'some value']
filter()
filter()
方法用一个固定值填充数组中从起始索引(默认为0
)到终止索引(默认为array.length
)内的全部元素,返回修改后的数组。
const arr = [1, 5, 7, 13, 45, 66];
console.log(arr.filter((i) => i > 10)); //[13, 45, 66]
find系列
find()
方法返回数组中满足提供的测试函数的第一个元素的值。否则返回undefined
。
findIndex()
方法返回数组中满足提供的测试函数的第一个元素的索引。若没有找到对应元素则返回-1
。
findLast()
方法反向迭代数组,并返回满足提供的测试函数的第一个元素的值。如果没有找到对应元素,则返回undefined
。
findLastIndex()
方法反向迭代数组,并返回满足所提供的测试函数的第一个元素的索引。若没有找到对应元素,则返回-1
。
const arr = [1, 15, 7, 33, 5, 66, 47, 9, 5];
const cond = (x) => x > 30;
console.log(arr.find(cond)); //33
console.log(arr.findIndex(cond)); //3
console.log(arr.findLast(cond)); //47
console.log(arr.findLastIndex(cond)); //6
flat()
flat()
方法创建一个新的数组,并根据指定深度递归地将所有子数组元素拼接到新的数组中。
const arr = [1, 2, ['a', 'b', [88, 99, ['xx', 'yy']]], 3];
console.log(arr.flat()); //[1, 2, 'a', 'b', [88, 99, ['xx', 'yy']], 3]
console.log(arr.flat(2)); //[1, 2, 'a', 'b', 88, 99, ['xx', 'yy'], 3]
console.log(arr.flat(Infinity)); //[1, 2, 'a', 'b', 88, 99, 'xx', 'yy', 3]
forEach()
forEach()
方法对数组的每个元素执行一次给定的函数。
arr.forEach(callbackFn)
callbackFn
为数组中每个元素执行的函数,并会丢弃它的返回值。该函数被调用时将传入以下参数:
value
:数组中正在处理的当前元素
index
:数组中正在处理的当前元素的索引
array
:调用了forEach()
的数组本身
const arr = ['a', 'b', 'c'];
arr.forEach((value, index, array) => console.log(value, index, array));
// a 0 ['a', 'b', 'c']
// b 1 ['a', 'b', 'c']
// c 2 ['a', 'b', 'c']
includes()
includes()
方法用来判断一个数组是否包含一个指定的值。
arr.includes(searchElement)
arr.includes(searchElement, fromIndex) //开始搜索的索引
console.log([1, 2, 3].includes(2)); //true
console.log([1, 2, 3].includes(4)); //false
console.log([1, 2, 3].includes(1, 2)); //false
//负索引从数组末尾开始计数,但仍然从前往后进行搜索
console.log([1, 2, 3].includes(3, -2)); //true
console.log([1, 2, NaN].includes(NaN)); //true
console.log(['1', '2', '3'].includes(3)); //false
indexOf()
indexOf()
方法返回数组中第一次出现给定元素的下标,如果不存在则返回-1
。
arr.indexOf(searchElement)
arr.indexOf(searchElement, fromIndex) //开始搜索的索引
const arr = [0, 1, 2, 3, 2];
console.log(arr.indexOf(2)); //2
console.log(arr.indexOf(2, 3)); //4
console.log(arr.indexOf(9)); //-1
lastIndexOf()
lastIndexOf()
方法返回数组中给定元素最后一次出现的索引,如果不存在则返回-1
。该方法从fromIndex
开始向前搜索数组。
arr.lastIndexOf(searchElement)
arr.lastIndexOf(searchElement, fromIndex) //开始搜索的索引
const arr = [0, 1, 2, 3, 2];
console.log(arr.lastIndexOf(2)); //4
console.log(arr.lastIndexOf(2, 3)); //2
console.log(arr.lastIndexOf(9)); //-1
join()
join()
方法将一个数组的所有元素连接成一个字符串并返回这个字符串,用逗号或指定的分隔符字符串分隔。如果数组只有一个元素,那么将返回该元素而不使用分隔符。
const elements = ['Fire', 'Air', 'Water'];
console.log(elements.join()); //Fire,Air,Water
console.log(elements.join('')); //FireAirWater
console.log(elements.join('-')); //Fire-Air-Water
map()
map()
方法创建一个新数组,这个新数组由原数组中的每个元素都调用一次提供的函数后的返回值组成。
arr.map(callbackFn)
callbackFn
为数组中每个元素执行的函数,它的返回值作为一个元素被添加为新数组中。该函数被调用时将传入以下参数:
value
:数组中正在处理的当前元素
index
:数组中正在处理的当前元素的索引
array
:调用了map()
的数组本身
const numbers = [1, 4, 9];
const roots = numbers.map((num) => Math.sqrt(num));
console.log(numbers); //[1, 4, 9]
console.log(roots); //[1, 2, 3]
pop()和push()
pop()
方法从数组中删除最后一个元素,并返回该元素的值。此方法会更改数组的长度。push()
方法将指定的元素添加到数组的末尾,并返回新的数组长度。
const arr = [1, 2, 3];
arr.push(50);
const res1 = arr.push(98, 99);
console.log(res1, arr); //6 [1, 2, 3, 50, 98, 99]
const res2 = arr.pop();
console.log(res2, arr); //99 [1, 2, 3, 50, 98]
console.log([].pop()); //undefined
reduce()
reduce()
方法对数组中的每个元素按序执行一个提供的reducer
函数,每一次运行reducer
会将先前元素的计算结果作为参数传入,最后将其结果汇总为单个返回值。
第一次执行回调函数时,不存在“上一次的计算结果”。如果需要回调函数从数组索引为0
的元素开始执行,则需要传递初始值。否则,数组索引为0
的元素将被用作初始值,迭代器将从索引为1
的元素开始执行。
下面是一个使用reduce()
的例子,计算数组所有元素的总和:
const arr = [1, 2, 3, 4];
const initialValue = 7;
const sum = arr.reduce((sum, currentValue) => sum + currentValue, initialValue);
console.log(sum); //17
使用 .reduce() 替代 .filter().map()
使用filter()
和map()
会遍历数组两次,但是你可以使用reduce()
只遍历一次并实现相同的效果。
下面这个例子中,希望筛选出数组中的正数并将其乘2
:
const numbers = [-5, 6, 2, -1];
console.log(
numbers.filter((n) => n > 0).map((n) => n * 2)
); //[12, 4]
console.log(
numbers.reduce((result, n) => (n > 0 ? [...result, n * 2] : result), [])
); //[12, 4]
reverse()
reverse()
方法反转数组中的元素,并返回同一数组的引用。
改变返回的数组也会改变原始数组。
const arr = [1, 2, 3];
const res = arr.reverse();
console.log(arr); //[3, 2, 1]
res[0] = 99;
console.log(res, arr); //[99, 2, 1] [99, 2, 1]
如果希望reverse()
不改变原始数组,可以在调用之前做一个浅拷贝。
const arr = [1, 2, 3];
const res = [...arr].reverse(); //在调用之前做浅拷贝
console.log(arr); //[1, 2, 3]
res[0] = 99;
console.log(res, arr); //[99, 2, 1] [1, 2, 3]
shift()和unshift()
shift()
方法从数组中删除第一个元素,并返回该元素的值。此方法会更改数组的长度。unshift()
方法将指定元素添加到数组的开头,并返回新的数组长度。
const arr = [1, 2, 3];
arr.unshift(50);
const res1 = arr.unshift(98, 99);
console.log(res1, arr); //6 [98, 99, 50, 1, 2, 3]
const res2 = arr.shift();
console.log(res2, arr); //98 [99, 50, 1, 2, 3]
console.log([].shift()); //undefined
slice()
slice()
方法返回一个新的数组对象,该对象为原数组的一段,包括start
,不包括end
。
arr.slice()
arr.slice(start)
arr.slice(start, end)
const arr = [0, 1, 2, 3, 4, 5];
console.log(arr.slice()); //[0, 1, 2, 3, 4, 5]
console.log(arr.slice(2)); //[2, 3, 4, 5]
console.log(arr.slice(2, 4)); //[2, 3]
//支持负数索引
console.log(arr.slice(-2)); //[4, 5]
console.log(arr.slice(-6, 4)); //[[0, 1, 2, 3]
console.log(arr.slice(-5, -1)); //[1, 2, 3, 4]
//end超出范围会提取所有元素直到末尾
console.log(arr.slice(-5, 99)); //[1, 2, 3, 4, 5]
sort()
sort()
方法就地对数组的元素进行排序,并返回对相同数组的引用。
arr.sort()
arr.sort(compareFn)
如果省略compareFn
,数组元素会被转换为字符串,然后根据每个字符的Unicode码位值进行排序。
const arr1 = [2, 5, 14, 8, 1];
const arr2 = arr1.sort();
console.log(arr1); //[1, 14, 2, 5, 8]
arr2[0] = 99;
console.log(arr1); //[99, 14, 2, 5, 8]
arr1.sort((a, b) => a - b);
console.log(arr1); //[2, 5, 8, 14, 99]
splice()
splice()
方法通过移除或者替换已存在的元素和/或添加新元素就地改变一个数组的内容。
arr.splice(start)
arr.splice(start, deleteCount)
arr.splice(start, deleteCount, item1)
arr.splice(start, deleteCount, item1, item2, itemN)
参数说明:
start
:表示要开始改变数组的位置
deleteCount
:数组中要从start
开始删除的元素数量
item1 ... itemN
:从start
开始要加入到数组中的元素
如果省略了deleteCount
,或者其值大于或等于由start
指定的位置到数组末尾的元素数量,那么从start
到数组末尾的所有元素将被删除。
const arr = [0, 1, 2, 3, 4, 5, 6, 7, 8];
arr.splice(6);
console.log(arr); //[0, 1, 2, 3, 4, 5]
arr.splice(2, 2);
console.log(arr); //[0, 1, 4, 5]
arr.splice(1, 2, 'a');
console.log(arr); //[0, 'a', 5]
arr.splice(0, 0, 'hello', 'world');
console.log(arr); //['hello', 'world', 0, 'a', 5]
Array.isArray()
Array.isArray()
静态方法用于确定传递的值是否是一个Array
。
console.log(Array.isArray([1, 2, 3])); //true
console.log(Array.isArray('123')); //false
更多示例:Array.isArray()
Array.from()
Array.from()
静态方法从可迭代或类数组对象创建一个新的浅拷贝的数组实例。
转换异步的可迭代对象到数组,可以使用Array.fromAsync()
。
console.log(Array.from('hello')); //['h', 'e', 'l', 'l', 'o']
console.log(Array.from([1, 2, 3], (x) => x * x)); //[1, 4, 9]
Array.from()
可以通过以下方式来创建数组对象:
类数组对象(带有length
属性和索引元素的对象)
Array.of()
Array.of()
静态方法通过可变数量的参数创建一个新的Array
实例。Array()
构造函数会因为参数数量不同导致重载,Array.of()
行为更加统一。
console.log(Array(5)); //[<5 empty items>]
console.log(Array(98, 99)); //[98, 99]
console.log(Array.of(5)); //[5]
console.log(Array.of(98, 99)); //[98, 99]