I have searched for similar questions on here but the expected result does not meet my needs. Consider the following multidimensional array.
let list = [
[1, 10, 13, 4],
[5, 6, 83, 45],
[9, 18, 11, 12]
];
How would you go about merging all values to produce the following result.
const output = [15, 34, 107, 61];