其他分享
首页 > 其他分享> > 遍历每个数组对象,并且给每个对象添加一个相同的字段,值从另外一个数组取过来

遍历每个数组对象,并且给每个对象添加一个相同的字段,值从另外一个数组取过来

作者:互联网

let arr = [ { id : “1”, num : “1” }, { id : ”2“, num : ”1“} ];

let otherArr = ["1", "2"];

arr.forEach((value, index) => {

  value['newNum'] = otherArray[index];

})

arr结果:

arr = [ { id : “1”, num : “1”, newNum: "1" }, { id : ”2“, num : ”1“, newNum: "2" } ];

forEach() 方法用于调用数组的每个元素,并将元素传递给回调函数。
1、value 必须。当前元素的值
2、index 可选。当前元素的索引值

标签:index,arr,每个,对象,value,num,newNum,数组,id
来源: https://blog.csdn.net/thegiashuaiboy/article/details/120450583