Skip to content

Instantly share code, notes, and snippets.

@zythum
Last active April 12, 2017 03:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zythum/8533518 to your computer and use it in GitHub Desktop.
Save zythum/8533518 to your computer and use it in GitHub Desktop.
'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
@ArthurMao
Copy link

sun(1,2,3,4,5,6)
sun
sun sun
sun sun sun ...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment