数组操作(forEachmapfiltereveryreduce)
Posted it-bao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数组操作(forEachmapfiltereveryreduce)相关的知识,希望对你有一定的参考价值。
arr = [0, 2, 4, 6]
1、forEach
arr.forEach(item => {
console.log(item)
})
数组的每个元素执行函数,没有返回值
2、map
let arr2 = arr.map(item => {
item * 2
}
生成新数组,新数组由返回值组成
arr2 = [0, 4, 8, 12]
3、filter
let arr2 = arr.filter(item => {
item > 1
}
从数组中筛选出符合条件的值组成新的数组返回
arr2 = [2, 4, 6]
4、every
都满足条件时返回true,有一个不满足就返回false
let arr = [2, 4, 6]
let flag = arr.every(item => {
return item > 2
})
此时flag为false
let arr = [2, 4, 6]
let flag = arr.every(item => {
return item > 1
})
此时flag为true
5、reduce
以上是关于数组操作(forEachmapfiltereveryreduce)的主要内容,如果未能解决你的问题,请参考以下文章