I am trying to solve an equation where I add numbers from a list of arrays following the indices.
Each array of a list are a randomly generated fixed-length array of 4 numbers like so:
const list = [
[2, 9, 1, 2],
[2, 3, 9, 4],
[4, 7, 8, 1]
]
So what I am trying to do is get the sum of each number of each index from each array. Like so:
const list = [
[2, 9, 1, 2],
[2, 3, 9, 4],
[4, 7, 8, 1]
]
// expectedResult = [8, 19, 18, 7];
How can I achieve this?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…