Skip to content

Instantly share code, notes, and snippets.

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