Answers for "how to get sum of values in array in js"

8

js sum of array

[1, 2, 3, 4].reduce((a, b) => a + b, 0)

// Output: 10
Posted by: Guest on July-26-2020
4

sum of all elements in array javascript

arrSum = function(arr){  return arr.reduce(function(a,b){    return a + b  }, 0);}
Posted by: Guest on October-22-2019

Code answers related to "how to get sum of values in array in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language