Created
January 26, 2015 09:59
-
-
Save gish/bcde59529e71f1e63762 to your computer and use it in GitHub Desktop.
variable declaration convention
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
// Option 1 | |
var foo = 21; | |
var baz, bar; | |
// Option 2 | |
var foo = 21; | |
var baz; | |
var bar; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment