Created
March 9, 2017 16:44
-
-
Save Alex1990/d561ee160d78b2d738f05ecb1bf101e4 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
// Use rest operator and reduce method | |
function sum(...args) { | |
return args.reduce((a, b) => a + b); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment