And it's better to make a semantically rich utility function.
/** @func sum up an arr of nums @param {number[]} a @return {number} */ export const sum = a => a.reduce((acc, n) => acc + n, 0); sum([1, 2, 3, 4, 5]); // 15
P.S. Although it might be tempting to extend the built-in Math namespace with a "Math.sum", that would be an antipattern to do so.
Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment's permalink.
Hide child comments as well
Confirm
For further actions, you may consider blocking this person and/or reporting abuse
We're a blogging-forward open source social network where we learn from one another
And it's better to make a semantically rich utility function.
P.S.
Although it might be tempting to extend the built-in Math namespace with a "Math.sum", that would be an antipattern to do so.