数组遍历修改值
2020-12-16 本文已影响0人
盖子pp
数组对象的格式是直接可以修改值的,按时单纯数组是不能直接改值的
let arr = [1,2,3,4]
arr.forEach(item => {
item = item * 3
})
console.log(arr, 'arr') // [1, 2, 3, 4] "arr"
arr.forEach((item, index) => {
arr[index] = arr[index] *3
})
console.log(arr, 'brr') //[3, 6, 9, 12] "brr"