导读
- 数组方法分类
- 数组迭代器方法
- Array.forEach()
- array.map()
- array.filter()
- array.find()
- array.findIndex()
- array.every()
- array.some()
- array.reduce()
- array.reduceRight()
迭代器方法
迭代器方法用于遍历数组元素,对每个数组元素调用一次指定的函数。
forEach()
定义:通过指定函数迭代数组的每个元素。工作机制:逐一传入数组元素到函数体内,对函数体内的数组元素进行何种操作,由开发者决定**。
语法
array.forEach(function(数组元素, 数组索引, 数组本身), this)
参数
- Function(item, index, arr){}:迭代数组的每个元素。(必须)
- item: 接收数组元素的形参,必须。
- index: 接收数组索引的形参,可选。
- arr: 接收当前数组的形参,可选。
- this:修改函数内的
this
指向,默认值undefined,可选。
返回值 : undefined
注意 :
- forEach()不存在break机制。
示例: 输出[4,5,6]
const arr = [1, 2, 3];
arr.forEach(function(item,index){
arr[index] = item + 3
});
console.log(arr) // [4,5,6]
示例: 输出数组元素之和
let sum = 0;
const arr = [1, 2, 3];
arr.forEach(function(item){
sum += item
});
console.log(sum) //6
map()
定义
array.map()
方法使用指定函数遍历数组。即逐一对传入到函数体的每个数组元素进行操作,然后把每一个数组元素填充进新数组。(操作由开发者设计)
语法
array.map(function(item, index, arr), this)
- function: 遍历数组的函数。必须。
- item: 接收数组元素的形参,必须。
- index: 接收数组索引的形参,可选。
- arr: 接收当前数组的形参,可选。
- this: 修改函数内的
this
指向,默认值undefined,可选。
返回值
返回操作后的新数组
注意 :应该为参数函数设置return。
示例: 输出[4,5,6]
const arr = [1, 2, 3];
let arrNew = [ ]
arrNew = arr.map(function(item,index){
return item + 3 // 设置function函数的返回值,返给map()方法
});
console.log(arrNew) // [4,5,6]
Filter()
定义
array.filter()
方法使用指定函数遍历数组。即逐一对传入到函数体的每个数组元素进行条件检测,把符合条件的数组元素填充进新数组,跳过不符合条件的数组元素。(条件由开发者设计)
语法
array.filter(function(item, index, arr), this)
- function: 遍历数组的函数。必须。
- item: 接收数组元素的形参,必须。
- index: 接收数组索引的形参,可选。
- arr: 接收当前数组的形参,可选。
- this: 修改函数内的
this
指向,默认值undefined,可选。
返回值
返回符合条件的新数组或空数组
注意 :应该为参数函数设置return。
示例: 筛选大于3的数组元素
const arr = [1, 2, 3, 4, 5, 6];
let arrNew = []
arrNew = arr.filter(function (item) { //filter()方法自动返回符合条件的数组元素
return item > 3 // 设置function函数的返回值,返给filter()方法
});
console.log(arrNew) // [4,5,6]
Find()
定义
array.find()
方法使用指定函数遍历数组。即逐一对传入到函数体的数组元素进行条件查找,找到第一个符合条件的数组元素则返回true,然后返回该元素,停止查找;如果找不到则返回undefined。(条件由开发者设计)
语法
array.find(function(item, index, arr), this)
- function: 遍历数组的函数。必须。
- item: 接收数组元素的形参,必须。
- index: 接收数组索引的形参,可选。
- arr: 接收当前数组的形参,可选。
- this: 修改函数内的
this
指向,默认值undefined,可选。
返回值
返回找到的元素或undefined
注意 :应该为参数函数设置return。
示例
var arr = [1,2,3]
var result = arr.find(function(item){
return item == 2
})
console.log(result) // 2
findIndex()
定义
array.findIndex()
方法使用指定函数短路遍历数组。即对逐一传入到函数体的数组元素进行短路条件查找,找到符合条件的数组元素则返回true,然后返回该元素的索引,然后停止查找;如果找不到返回-1。(条件由开发者设计)
语法
array.findIndex(function(item, index, arr), this)
- function: 遍历数组的函数。必须。
- item: 接收数组元素的形参,必须。
- index: 接收数组索引的形参,可选。
- arr: 接收当前数组的形参,可选。
- this: 修改函数内的
this
指向,默认值undefined,可选。
返回值
返回找到元素的索引。
注意 :应该为参数函数设置return。
示例
var arr = [1,2,3]
var result = arr.findIndex(function(item){
return item == 2
})
console.log(result) // 1
Every()
array.every()
方法使用指定函数遍历数组。即逐一对传入到函数体的每个数组元素进行短路条件检测,符合条件就返回一个true,不符合条件就返回false。(条件由开发者设计)
语法
array.every(function(item, index, arr), this)
- function: 遍历数组的函数。必须。
- item: 接收数组元素的形参,必须。
- index: 接收数组索引的形参,可选。
- arr: 接收当前数组的形参,可选。
- this: 修改函数内的
this
指向,默认值undefined,可选。
返回值
- true: 当传入的数组元素全部返回true时,返回true。
- false: 当传入的数组元素有一个返回false,则返回false。
注意 :应该为参数函数设置return。
示例
var arr = [1,2,3]
var result = arr.every(function(item){
return item > 0
})
console.log(result) // true
Some()
定义
array.some()
方法使用指定函数遍历数组。即逐一对传入到函数体的数组元素进行条件检测,符合条件就返回一个true并停止检测,不符合条件就返回false。(条件由开发者设计)
语法
array.some(function(item, index, arr), this)
- function: 遍历数组的函数。必须。
- item: 接收数组元素的形参,必须。
- index: 接收数组索引的形参,可选。
- arr: 接收当前数组的形参,可选。
- this: 修改函数内的
this
指向,默认值undefined,可选。
返回值
- true: 当传入的数组元素有一个返回true时,返回true。
- false: 当传入的数组元素全部返回false,则返回false。
注意 :应该为参数函数设置return。
示例
var arr = [1,2,3]
var result = arr.some(function(item){
return item > 2
})
console.log(result) // true
reduce()
定义
array.reduce()
方法为数组的每个值(从左到右)执行提供的函数。该方法将数组缩减为单个值。
语法
array.reduce(function(total, item, index, arr), initialValue)
- function: 遍历数组的函数。必须。
- total: 用于求和的变量。
- item: 接收数组元素的形参,必须。
- index: 接收数组索引的形参,可选。
- arr: 接收当前数组的形参,可选。
- initialValue: 初始值。
返回值
返回回调函数累积的结果。
注意 :应该为参数函数设置return。
示例
var arr = [1, 2, 3]
var result = arr.reduce(function (total, item) {
return total += item
}, 0)
console.log(result) // 6
reduceRight()
练习题
- 员工数据统计
- 订单查询
- 查询用户评论
- 富豪排行榜
- 有哪些方法是短路方法
- find()的返回值
- findIndex()的返回值
- map返回什么
- 返回数组的有哪几个方法
- some和find的区别
- 二维数组arr = [[3,5,7],[3,4,7],[2,5,4]]:找3的索引[0,0,1]
12.arr = [[3,5,7],[3,4,7],[2,5,4]]找子数组的第一个元素[3,3,2]
let arr = [[3,5,7],[3,4,7],[2,5,4]]
let result = arr.map(function(item,index){
return item.findIndex(function(item2){
return item2 === 3
})
// return r !== -1
})
console.log(result)