Spread that out !
For further actions, you may consider blocking this person and/or reporting abuse
For further actions, you may consider blocking this person and/or reporting abuse
Paulo Messias -
Virali Vasa -
Ukeje Chukwuemeriwo Goodness -
Agbo, Daniel Onuoha -
Top comments (4)
jsbench.me/g4jx2nffbo/1
Array.prototype.reduce() seems to be much faster.
Definitively slower to execute but half the time to write it :)
Depends what the codes for really.
Math.max()
is easier to read, and if only run occasionally on small arrays... fine.Reduce
is a little more convoluted, but still can be understood easily enough. The time savings on the code if running frequently or on larger datasets can quickly add up in benefits.Not if you use snippets!