JavaScript -- forEach不能改变原数组的的问题

2020-11-20  本文已影响0人  Bior

forEach是没有返回值并且不直接改变原数组的,今天发现是不能直接改变,用些技巧是可以间接改变的。

  1. forEach(item, index, arr),三个参数,如果直接用item=xxx是无法改变原数组的,但是如果用arr[index]就可以改变原数组。
var s = [1,2,3,4];
s.forEach(item=>{
   item = 'a'
});
console.log(s);// ["1", "2", "3", "4"] 未改变原数组


s.forEach((item, index, arr)=>{
   arr[index] = 'b'
});
console.log(s);// ["b", "b", "b", "b"] 改变了原数组
  1. 数组里面的子元素是对象,那么是可以改变对应属性的
var s = [{a:1}, {a:1}];
s.forEach(item=>{
    item = null;
});
console.log(s);//[{a: 1} ,{a: 1}] 未改变原数组
 
s.forEach(item=>{
    item.a = 666;
});
console.log(s); // [{a: 666}, {a: 666}] //改变的原数组里面的对象属性
上一篇下一篇

猜你喜欢

热点阅读