javascript数组常用方法
数组增删改查
增
push()
接收任何数量的参数,并将它们添加到数组末尾,返回数组的最新长度(会对原数组产生影响)
let colors = []; // 创建一个数组
let count = colors.push("red", "green"); // 推入两项
console.log(count) // 2
unshift()
在数组开头添加任意多个值,然后返回数组的最新长度(会对原数组产生影响)
let colors =[]; // 创建一个数组
let count = colors.unshift("red", "green"); // 从数组开头推入两项
alert(count); // 2
splice()
传三个参数分别是0、要删除的元素数量、要插入的元素
,返回空数组(会对原数组产生影响)
let colors = ["red", "green", "blue"];
let removed = colors.splice(1, 0, "yellow", "orange")
console.log(colors) // red,yellow,orange,green,blue
console.log(removed) // []
concat()
创建一个当前副本的数组,然后把它的参数添加到副本末尾,最后返回这个新构造的数组(不会影响原数组)
let colors = ["red", "green", "blue"];
let colors2 = colors.concat("yellow", ["black", "brown"]);
console.log(colors); // ["red", "green","blue"]
console.log(colors2); // ["red", "green", "blue", "yellow", "black", "brown"]
删
pop()
用于删除数组的最后一项,同时减少数组的长度,返回被删除项(会对原数组产生影响)
let colors = ["red", "green"]
let item = colors.pop(); // 取得最后一项
console.log(item) // green
console.log(colors.length) // 1
shift()
用于删除数组的第一项,同时减少数组的长度,返回被删除项(会对原数组产生影响)
let colors = ["red", "green"]
let item = colors.shift(); // 取得第一项
console.log(item) // red
console.log(colors.length) // 1
splice()
传入两个参数分别是开始位置、要删除元素的数量
,返回包含删除元素的数组(会对原数组产生影响)
let colors = ["red", "green", "blue"];
let removed = colors.splice(0,1); // 删除第一项
console.log(colors); // green,blue
console.log(removed); // red,只有一个元素的数组
slice()
用于创建一个包含原有数组中一个或多个的新数组(不会影响原数组)
let colors = ["red", "green", "blue", "yellow", "purple"];
let colors2 = colors.slice(1);
let colors3 = colors.slice(1, 4);
console.log(colors) // red,green,blue,yellow,purple
concole.log(colors2); // green,blue,yellow,purple
concole.log(colors3); // green,blue,yellow
改
即修改原来数组的内容,通常使用splice()
查
indexOf()
返回要查找的元素在数组的位置,如果没有找到则返回-1
let numbers = [1, 2, 3, 4, 5, 4, 3, 2, 1];
numbers.indexOf(4) // 3
includes()
返回要查找的元素在数组中的位置,找到返回true
,否则false
let numbers = [1, 2, 3, 4, 5, 4, 3, 2, 1];
numbers.includes(4) // true
find()
返回第一个匹配的元素需要配合函数使用
const people = [
{
name: "Matt",
age: 27
},
{
name: "Nicholas",
age: 29
}
];
people.find((element, index, array) => element.age < 28) //
数组排序方法
reverse()
数组翻转,将数组元素方向排列(会对原数组产生影响)
let values = [1, 2, 3, 4, 5];
values.reverse();
alert(values); // 5,4,3,2,1
sort()
数组排列,按照数组元素内容大小排列(会对原数组产生影响)
let values = [5,4,5,7,1,0,3];
values.sort(); //[0, 1, 3, 4, 5, 5, 7]
数组转换方法
join()
切割,接收一个参数,即字符串分隔符,返回包含所有的字符串
let colors = ["red", "green", "blue"];
alert(colors.join(",")); // red,green,blue
alert(colors.join("||")); // red||green||blue
数组迭代方法
some
对数组每一项都运行传入的函数,如果内容中有一项返回true
,则这个方法返回true
let numbers = [1, 2, 3, 4, 5, 4, 3, 2, 1];
let someResult = numbers.some((item, index,) => item > 2);
console.log(someResult) // true
every()
对数组每一项都运行传入的函数,如果内容中每一项都返回true
,则这个方法返回true
let numbers = [1, 2, 3, 4, 5, 4, 3, 2, 1];
let everyResult = numbers.every((item, index, array) => item > 2);
console.log(everyResult) // false
forEach()
遍历数组,对数组每一项都运行传入的函数,没有返回值
let numbers = [1, 2, 3, 4, 5, 4, 3, 2, 1];
numbers.forEach((item, index, array) => {
// 执行某些操作
});
filter()
过滤数组,对数组每一项都运行传入的函数,函数返回true
项会组成数组并返回
let numbers = [1, 2, 3, 4, 5, 4, 3, 2, 1];
numbers.forEach((item, index, array) => {
// 执行某些操作
});
map()
对数组的每一项都运行传入的函数,返回由每次函数调用的结果构成的数组
let numbers = [1, 2, 3, 4, 5, 4, 3, 2, 1];
let mapResult = numbers.map((item, index, array) => item * 2);
console.log(mapResult) // 2,4,6,8,10,8,6,4,2