Skip to content

Instantly share code, notes, and snippets.

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