Skip to content

Instantly share code, notes, and snippets.

@cesarkohl
Created January 13, 2020 14:27
Show Gist options
  • Select an option

  • Save cesarkohl/c9dbe1d93165954fe776bfb012f56de0 to your computer and use it in GitHub Desktop.

Select an option

Save cesarkohl/c9dbe1d93165954fe776bfb012f56de0 to your computer and use it in GitHub Desktop.
var numbers = [1,2,3,4,5];
var sum = 0;
sum = numbers.reduce (function (sum, number) {
 return sum + number;
}, 0)
console.log (sum); // 15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment