Answers for "how to calculate the sum of values in an array in javascript"

39

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
1

sum of array of number

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

Code answers related to "how to calculate the sum of values in an array in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language