Answers for "how to add all values from an array js"

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 "how to add all values from an array js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language