sum multiple arrays javascript code example
Example 1: how to add multiple elements to A new array javascript
let vegetables = ['parsnip', 'potato']
let moreVegs = ['celery', 'beetroot']
Array.prototype.push.apply(vegetables, moreVegs)
console.log(vegetables)
Example 2: sum of two array in javascript
function sumArrays(...arrays) {
const n = arrays.reduce((max, xs) => Math.max(max, xs.length), 0);
const result = Array.from({ length: n });
return result.map((_, i) => arrays.map(xs => xs[i] || 0).reduce((sum, x) => sum + x, 0));
}
console.log(...sumArrays([0, 1, 2], [1, 2, 3, 4], [1, 2]));
Example 3: sum of two array in javascript
function sumArray(a, b) {
var c = [];
for (var i = 0; i < Math.max(a.length, b.length); i++) {
c.push((a[i] || 0) + (b[i] || 0));
}
return c;
}