Y
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
ahoge
3897 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);
link