Answers for "find the sum of an array"

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
0

sum all values of an array

function array(arr){
   var sum = 0;
   for (var i = 0; i< arr.length; i++){
    sum += arr[i];
   }
   console.log(sum);
 }
 array([5, 1, 3, 3])
Posted by: Guest on July-19-2021

Code answers related to "find the sum of an array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language