how to compute the sum of an array of integers javascript code example
Example 1: sum of number using reduce
console.log(
[1, 2, 3, 4].reduce((a, b) => a + b, 0)
)
console.log(
[].reduce((a, b) => a + b, 0)
)
Example 2: js sum of array
[1, 2, 3, 4].reduce((a, b) => a + b, 0)
// Output: 10
Example 3: sum of all numbers in an array javascript
const arrSum = arr => arr.reduce((a,b) => a + b, 0)