Answers for "how do you return the sum of values in an array in js"

41

array sum javascript

const arr = [1, 2, 3, 4];
const sum = arr.reduce((a, b) => a + b, 0);
// sum = 10
Posted by: Guest on January-26-2021
0

js sum of int in array

const sum = [1, 2, 3].reduce((partialSum, a) => partialSum + a, 0);
console.log(sum); // 6
Posted by: Guest on March-18-2022

Code answers related to "how do you return the sum of values in an array in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language