Hacker News new | ask | show | jobs
by ahoge 3896 days ago
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);