Skip to content

Instantly share code, notes, and snippets.

@jcar787
Created February 26, 2022 09:21
Show Gist options
  • Save jcar787/6ed32e9f772f0e012a3b2ca496976cb0 to your computer and use it in GitHub Desktop.
Save jcar787/6ed32e9f772f0e012a3b2ca496976cb0 to your computer and use it in GitHub Desktop.
Trivial reduce example but better
const numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9];
const total = numbers.reduce((sum, number) => {
const currentTotal = sum + number;
return currentTotal;
}, 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment