文章主要来源:
我们用更简洁的语法(比如内置函数)遍历数组,从而消除循环结构。
forEach、map、filter、reduce、every、some 不可以使用 break 和 continue ,因为在function中解决了闭包陷阱的问题
for、for...in、for...of、while可以使用 break、continue
用于遍历数组元素使用:for(),forEach(),map(),for...of
用于循环对象属性使用:for...in
1.for循环
使用临时变量将长度缓存起来,避免重复获取数组长度,当数组较大时优化效果比较明显。
缺点:这种写法比较麻烦
for(j = 0,len=arr.length; j < len; j++) {
}
2.foreach循环
遍历数组中的每一项,没有返回值,可以不用知道数组长度,对原数组没有影响,不支持IE
缺点:这种写法的问题在于,无法中途跳出forEach循环,break命令或return命令都不能奏效。
//1 没有返回值
arr.forEach((item,index,array)=>{
//执行代码
})
//参数:item数组中的当前项, index当前项的索引, array原始数组;
//数组中有几项,那么传递进去的匿名回调函数就需要执行几次;
3.map循环
map函数,遍历数组每个元素,并回调操作,需要返回值,返回值组成新的数组,原数组不变。
每个元素都是回调函数返回的值。
arr.map(function(value,index,array){
//do something
return XXX
})
var ary = [12,23,24,42,1];
var res = ary.map(function (item,index,ary ) {
return item*10;
})
console.log(res);//-->[120,230,240,420,10]; 原数组拷贝了一份,并进行了修改
console.log(ary);//-->[12,23,24,42,1]; 原数组并未发生变化
4.forof遍历
可以正确响应break、continue和return语句
for (var value of myArray) {
console.log(value);
}
5.filter遍历
返回一个新数组,数组的元素是原数组中通过测试的元素(就是回调函数返回 true 的话,对应的元素会进入新数组), 原数组不变。
var arr = [
{ id: 1, text: 'aa', done: true },
{ id: 2, text: 'bb', done: false }
]
console.log(arr.filter(item => item.done))
转为ES5
arr.filter(function (item) {
return item.done;
});
var arr = [73,84,56, 22,100]
var newArr = arr.filter(item => item>80) //得到新数组 [84, 100]
console.log(newArr,arr)
6.some遍历
some()类似于filter(),不同的是返回值为Boolean,只要有一个值满足即立刻返回true,不再继续执行,否则返回false。
some()是对数组中每一个元素运行指定函数,如果该函数对任一个元素返回true,则返回true。
var arr = [ 1, 2, 3, 4, 5, 6 ];
console.log( arr.some( function( item, index, array ){
return item > 3;
}));
true
7.every遍历
every()类似于some(),不同的是找到符合条件的值会继续执行,如果每个值都满足条件才会返回true,否则就是false。
every()是对数组中的每一个元素运行指定函数,如果该函数对每一个元素返回true,则返回true。
var arr = [ 1, 2, 3, 4, 5, 6 ];
console.log( arr.every( function( item, index, array ){
return item > 3;
}));
false
8.reduce
reduce() 方法接收一个函数作为累加器(accumulator),数组中的每个值(从左到右)开始缩减,最终为一个值。
var total = [0,1,2,3,4].reduce((a, b)=>a + b); //10
reduce接受一个函数,函数有四个参数,分别是:上一次的值,当前值,当前值的索引,数组
[0, 1, 2, 3, 4].reduce(function(previousValue, currentValue, index, array){
return previousValue + currentValue;
});
9.reduceRight
reduceRight()方法的功能和reduce()功能是一样的,不同的是reduceRight()从数组的末尾向前将数组中的数组项做累加。
reduceRight()首次调用回调函数callbackfn时,prevValue和curValue可以是两个值之一。如果调用reduceRight()时提供了initialValue参数,则prevValue等于initialValue,curValue等于数组中的最后一个值。如果没有提供initialValue参数,则prevValue等于数组最后一个值,curValue等于数组中倒数第二个值。
var arr = [0,1,2,3,4];
arr.reduceRight(function (preValue,curValue,index,array) {
return preValue + curValue;
}); // 10
10.find
find()方法返回数组中符合测试函数条件的第一个元素。否则返回undefined
var stu = [
{name: '张三',gender: '男',age: 20},
{name: '王小毛',gender: '男',age: 20},
{ name: '李四',gender: '男', age: 20}
]
function getStu(element){
return element.name == '李四'
}
stu.find(getStu)
//返回结果为
//{name: "李四", gender: "男", age: 20}
ES6方法
stu.find((element) => (element.name == '李四'))
11.findIndex
对于数组中的每个元素,findIndex方法都会调用一次回调函数(采用升序索引顺序),直到有元素返回true。只要有一个元素返回 true,findIndex立即返回该返回 true 的元素的索引值。如果数组中没有任何元素返回 true,则findIndex返回 -1。
findIndex不会改变数组对象。
[1,2,3].findIndex(function(x) { x == 2; });
// Returns an index value of 1.
[1,2,3].findIndex(x => x == 4);
// Returns an index value of -1.
12.keys,values,entries
ES6 提供三个新的方法 —— entries(),keys()和values() —— 用于遍历数组。它们都返回一个遍历器对象,可以用for...of循环进行遍历,唯一的区别是keys()是对键名的遍历、values()是对键值的遍历,entries()是对键值对的遍历
for (let index of ['a', 'b'].keys()) {
console.log(index);
}
// 0
// 1
for (let elem of ['a', 'b'].values()) {
console.log(elem);
}
// 'a'
// 'b'
for (let [index, elem] of ['a', 'b'].entries()) {
console.log(index, elem);
}
// 0 "a"
// 1 "b"