Return the integer sum of elements in an array javascript code example
Example 1: js sum of array
[1, 2, 3, 4].reduce((a, b) => a + b, 0)
// Output: 10
Example 2: javascript sum of array
const sum = arr => arr.reduce((a, b) => a + b, 0);
[1, 2, 3, 4].reduce((a, b) => a + b, 0)
// Output: 10
const sum = arr => arr.reduce((a, b) => a + b, 0);