Skip to content

Instantly share code, notes, and snippets.

@rxluz
Created December 11, 2017 12:23
Show Gist options
  • Save rxluz/177ab991609d23bff9e274ad7d74bd6d to your computer and use it in GitHub Desktop.
Save rxluz/177ab991609d23bff9e274ad7d74bd6d to your computer and use it in GitHub Desktop.
const initialArray = [10, 20, 10, 20];
const result = initialArray.reduce(
(amount, value) => amount + value
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment