Skip to content

Instantly share code, notes, and snippets.

@cheng470
Created October 10, 2014 06:16
Show Gist options
  • Save cheng470/d64807369e3279f8fea5 to your computer and use it in GitHub Desktop.
Save cheng470/d64807369e3279f8fea5 to your computer and use it in GitHub Desktop.
定义默认参数
func = (c = d) ->
"hello #{c}"
func1 = (c) ->
c ?= d
"hello #{c}"
func2 = (c) ->
c = d unless c?
"hello #{c}"
func3 = (c) ->
c = d if not(c?)
"hello #{c}"
func4 = (c) ->
c or= d
"hello #{c}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment