Last active
July 26, 2021 11:01
-
-
Save chanonroy/5f94522adab9cb6d3ee7a51ecb781917 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 data = [1, 2, 3] | |
| const result = data.reduce((acc, cur) => { | |
| return acc + cur | |
| }, 0) | |
| // result: 6 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment