Answers for "function to sum contents of array javascript"

10

add all elements in array javascript

console.log(
  [1, 2, 3, 4].reduce((a, b) => a + b, 0)
)
console.log(
  [].reduce((a, b) => a + b, 0)
)
Posted by: Guest on January-22-2020
12

javascript sum of array

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

Code answers related to "function to sum contents of array javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language