Hacker News new | ask | show | jobs
by eru 3897 days ago
What's the value of sum for an empty array in your example?
1 comments

The reduce one needs an initial value of 0 for that to work. Then both versions will return 0 if the array is empty.

    array.reduce((a, b) => a + b, 0);