Created
February 14, 2012 13:19
-
-
Save linus/1826712 to your computer and use it in GitHub Desktop.
Variable instantiation
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 = 1, bar = 2; | |
var foo = 1 | |
, bar = 2; | |
var foo = 1, | |
bar = 2; | |
var foo = 1; | |
var bar = 2; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment