Skip to content

Instantly share code, notes, and snippets.

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