Created
July 30, 2018 23:32
-
-
Save gladchinda/a5b9357417f18788662811ce883f8ab2 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
| // WITHOUT ARROW FUNCTION | |
| const sum = numbers.reduce(function(a, b) { | |
| return a + Number(b); | |
| }, 0); | |
| // WITH ARROW FUNCTION | |
| const sum = numbers.reduce((a, b) => a + Number(b), 0); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment