Last active
April 12, 2017 03:20
-
-
Save zythum/8533518 to your computer and use it in GitHub Desktop.
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
'javascript' | |
function sum (params) { | |
return [].reduce.call(arguments, function(r, v){return r + v}) | |
} | |
sun(1,2,3,4,5,6) | |
'coffeescript' | |
sum = (params...)-> | |
params.reduce (r, v)-> r + v | |
sum 1,2,3,4,5,6 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
sun(1,2,3,4,5,6)
sun
sun sun
sun sun sun ...