Answers for "array .reduce sum"

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

javascript reduce sum

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

syntax of reduce in js

[1,2,3,4,5].reduce((acc, current)=>acc+current, 0)
Posted by: Guest on May-15-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language