Skip to content

Instantly share code, notes, and snippets.

@zeptobook
Created December 30, 2018 00:52
Show Gist options
  • Save zeptobook/8d49c0bec46b57ae9df7bba40c66a747 to your computer and use it in GitHub Desktop.
Save zeptobook/8d49c0bec46b57ae9df7bba40c66a747 to your computer and use it in GitHub Desktop.
array.reduce()
var nums = [10, 20, 30, 40, 50];
var sum = nums.reduce(function(total, value){
return total + value;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment