Skip to content

Instantly share code, notes, and snippets.

@juliobetta
Last active September 30, 2017 13:41
Show Gist options
  • Save juliobetta/59c9d0d15e6d06f13b3d7d2a57efd13e to your computer and use it in GitHub Desktop.
Save juliobetta/59c9d0d15e6d06f13b3d7d2a57efd13e to your computer and use it in GitHub Desktop.
Reduce example
const list = [1, 2, 3, 4, 5];
const result = list.reduce((accumulator, item) => {
return accumulator + item;
}, 0);
console.log(result); // 15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment