这种多个数组如何按索引相加啊,有谁知道的

这种多个数组如何按索引相加啊,有谁知道的

b2df5bfa96e159e73ee54535826e2b72.png

请先 登录 后评论

1 个回答

xxxxxa

let arr = [ [1,2,3,4,5], [6,7,8,9,10], [11,12,13,14,15], [16,17,18,19,20] ] arr.forEach((item,index)=>{ item.forEach((z,ins)=>{ item[ins] = z + (arr[index-1]?arr[index-1][ins]:0) }) }) 取arr最后一位

请先 登录 后评论