Created
February 26, 2022 09:14
-
-
Save jcar787/08257243867a187b84e4846f8a425886 to your computer and use it in GitHub Desktop.
Trivial reduce example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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