js---js中数组遍历方法forEach与map()有什么区别?

JS原生forEach与map

1 . 共同点
//1.都是循环遍历数组中的每一项

//2.forEach() 和 map() 里面每一次执行匿名函数都支持3个参数:数组中的当前项item,当前项的索引index,原始数组input。

//3.匿名函数中的this都是指Window

//4.只能遍历数组

2 . forEach()
//1 没有返回值
arr.forEach((item,index,array)=>{
//执行代码
})
//参数:value数组中的当前项, index当前项的索引, array原始数组;
//数组中有几项,那么传递进去的匿名回调函数就需要执行几次;
//理论上这个方法是没有返回值的,仅仅是遍历数组中的每一项,不对原来数组修改;但是可以自己通过数组的索引来修改原来的数组;

var ary = [12,23,24,42,1];
var res = ary.forEach(function (item,index,ary) {
ary[index] = item*10;
})
console.log(res);//--> undefined;
console.log(ary);//--> 通过数组索引改变了原数组;

3 . map()
///1.有返回值,可以return出来
arr[].map(function(value,index,array){

  //do something

  return XXX

})

//参数:value数组中的当前项,index当前项的索引,array原始数组;
//区别:map的回调函数中支持return返回值;return的是啥,相当于把数组中的这一项变为啥(并不影响原来的数组,只是相当于把原数组克隆一份,把克隆的这一份的数组中的对应项改变了);

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]; 原数组并未发生变化

JQ中$.each与$.map
1 . 共同点:
//即可遍历数组,又可遍历对象。
2 . $.each
//没有返回值。$.each()里面的匿名函数支持2个参数:当前项的索引i,数组中的当前项v。如果遍历的是对象,k 是键,v 是值。

$.each(arr, function(index,value){

  //do something

});

//参数:arr要遍历的数组,index当前项的索引,value数组中的当前项,第1个和第2个参数正好和两个JS原生函数是相反的,注意不要记错了

//遍历数组:
$.each( ["a","b","c"], function(i, v){
alert( i + ": " + v );
});

//遍历对象:
$.each( { name: "John", lang: "JS" }, function(k, v){
alert( "Name: " + k + ", Value: " + v );
});
3 . $.map()
//有返回值,可以return 出来。$.map()里面的匿名函数支持2个参数和$.each()里的参数位置相反:数组中的当前项v,当前项的索引 i。如果遍历的是对象,k 是键,v 是值。如果是$("span").map()形式,参数顺序和$.each() $("span").each()一样

$.map(arr, function(value, index){

  //do something

  return XXX

});

//遍历数组:
var arr=$.map( [0,1,2], function(v){
return v + 4;
});
console.log(arr);

//遍历对象:
$.map({"name":"Jim","age":17},function(k, v){
console.log( k+":"+v );
return ${k}:${v}
});

posted @ 2020-07-01 00:19  白头翁z  阅读(187)  评论(0编辑  收藏  举报