Skip to content

Instantly share code, notes, and snippets.

@halan
Created February 22, 2017 17:05
Show Gist options
  • Save halan/cafe9f68f34e4549d3ada6473afa920f to your computer and use it in GitHub Desktop.
Save halan/cafe9f68f34e4549d3ada6473afa920f to your computer and use it in GitHub Desktop.
let accumulator = 0;
for(let index = 0; index < collection.length; index++) {
accumulator = // get current accumulator and collection[index] and do some calculation
}
return accumlator;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment