Skip to content

Instantly share code, notes, and snippets.

@mudrd8mz
Created October 28, 2013 15:35
Show Gist options
  • Save mudrd8mz/7199027 to your computer and use it in GitHub Desktop.
Save mudrd8mz/7199027 to your computer and use it in GitHub Desktop.
var foo, bar,
baz, frog,
now = Date().getTime(),
doSomething = function (arg) {
var localVar;
},
anotherVar;
@mudrd8mz
Copy link
Author

I would prefer

var foo, bar,
    baz, frog,
    now = Date().getTime(),
    anotherVar;

var doSomething = function (arg) {
    var localVar;
};

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment