Skip to content

Instantly share code, notes, and snippets.

@zythum
Last active April 12, 2017 03:20
Show Gist options
  • Select an option

  • Save zythum/8533518 to your computer and use it in GitHub Desktop.

Select an option

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
Copy Markdown

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