Skip to content

Instantly share code, notes, and snippets.

@Paul-Browne
Created December 10, 2019 11:47
Show Gist options
  • Save Paul-Browne/012db0860be8be6589014b656a06370a to your computer and use it in GitHub Desktop.
Save Paul-Browne/012db0860be8be6589014b656a06370a to your computer and use it in GitHub Desktop.
var array = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
var total = array.reduceRight(function(accumulator, currentValue, currentIndex, array){
return accumulator + currentValue;
}, 0)
console.log(total);
// 55 (10 + 9 ... 2 + 1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment