这种多个数组如何按索引相加啊,有谁知道的
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最后一位