Answers for "reduce to get the sum of an array"

12

javascript sum of array

const sum = arr => arr.reduce((a, b) => a + b, 0);
Posted by: Guest on July-03-2020

Code answers related to "reduce to get the sum of an array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language