Skip to content

Instantly share code, notes, and snippets.

@davelnewton
Last active August 29, 2015 14:22
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 davelnewton/11c622f7b11351eb2b11 to your computer and use it in GitHub Desktop.
Save davelnewton/11c622f7b11351eb2b11 to your computer and use it in GitHub Desktop.
CoffeeScript IIFEs
For the blog post at:
http://buckybits.blogspot.com/2015/06/coffeescript-iifes.html
(function () {
var nonGlobalVar = "foo";
var alsoNonGlobal = "bar"
console.log(nonGlobalVar + " " + alsoNonGlobal);
})();
(->
nonGlobalVar = "foo"
alsoNonGlobal = "bar"
console.log "#{nonGlobalVar} #{alsoNonGlobal}")()
do ->
nonGlobalVar = "foo"
alsoNonGlobal = "bar"
console.log "#{nonGlobalVar} #{alsoNonGlobal}"
((s) ->
nonGlobalVar = "foo"
alsoNonGlobal = "bar"
console.log "#{nonGlobalVar} #{alsoNonGlobal} #{s}"
)("baz")
do (s = "baz") ->
nonGlobalVar = "foo"
alsoNonGlobal = "bar"
console.log "#{nonGlobalVar} #{alsoNonGlobal} #{s}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment