Answers for "how to take the sum of the number value in array in javascript"

8

js sum of array

[1, 2, 3, 4].reduce((a, b) => a + b, 0)

// Output: 10
Posted by: Guest on July-26-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 "how to take the sum of the number value in array in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language