Answers for "get sum of array elements javascript"

27

array sum javascript

const arr = [1, 2, 3, 4];
const sum = arr.reduce((a, b) => a + b, 0);
// sum = 10
Posted by: Guest on January-26-2021
12

javascript sum of array

const sum = arr => arr.reduce((a, b) => a + b, 0);
Posted by: Guest on July-03-2020
3

sum all elements in array javascript

arr.reduce((a, b) => a + b)
Posted by: Guest on June-27-2020
0

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])); // 2 5 5 4
Posted by: Guest on May-03-2020

Code answers related to "get sum of array elements javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language