一、利用for循环遍历
可以不用重复获取数组长度,提高效率,数组特别大时效果比较明显
for (var i = 0,len=arr.length; i < len; i++) {
//code
}
二、利用foreach遍历(没有返回值,对原数组没有影响)
arr.forEach((item,index,array)=>{
//code
})
arr数组有几项,箭头函数就会执行几次,code就会执行几次
item是遍历数组的当前项, index是当前项的索引, array是原数组;
三、利用map遍历(有返回值,对原数组没有影响)
把原数组的每一项都修改了,返回一个新数组,不会改变原数组
arr.map(function(value,index,array){
//code
return item*2;
})
var arr = [1,2,3,4,5];
var arrSecond= ary.map(function (item,index,array) {
return item*2;
})
console.log(arrSecond); //[2,4,6,8,10]