Created
December 21, 2010 17:40
-
-
Save bentruyman/750264 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
var foo = true | |
(function bar () { | |
return false | |
}()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
// it's not "semicolon-free" but instead "semicolon-minimal" -- part of the rules are that any statement that starts with (, [ or { needs a semicolon prefacing it:
var foo = true
;(function bar () {
return false
}())