赞
踩
js的数组的forEach函数
1.修改forEach回调函数中value参数,不会改变原数组
var array=[1,2,3];
//Array在ES5新增的方法中,参数都是function类型,默认有传参,forEach方法中的function回调支持3个参数,第1个是遍历的数组内容;第2个是对应的数组索引,第3个是数组本身
array.forEach(function(value,index,data){
++value;//可以看出改变value的值,数组本身是没有改变的
console.log("value:",value,"index:",index,"data:",data);
//输出结果
// value: 2 index: 0 data: (3) [1, 2, 3]
// value: 3 index: 1 data: (3) [1, 2, 3]
// value: 4 index: 2 data: (3) [1, 2, 3]
});
console.log(array,"array");
//输出结果
// [1, 2, 3] "array"
2.对forEach回调函数的数组参数操作,原数组改变
var array=[1,2,3];
array.forEach(function(value,index,data){
++value;
data.push(value);
});
console.log(array,"array");
// [1, 2, 3, 2, 3, 4] "array"
3.forEach函数是没有返回值的
var array=[1,2,3];
var newArray=array.forEach(function(value,index,data){
});
console.log("newArray:",newArray);
//newArray: undefined
---------------------
作者:gaobw1
来源:CSDN
原文:https://blog.csdn.net/gaobw1/article/details/78026066
版权声明:本文为博主原创文章,转载请附上博文链接!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。