how add numbers in javascript array 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