Answers for "how to create a function that returns the sum of an array javascript"

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
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 create a function that returns the sum of an array javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language