Skip to content

Instantly share code, notes, and snippets.

@dcousineau
Last active December 26, 2015 05:38
Show Gist options
  • Save dcousineau/7101607 to your computer and use it in GitHub Desktop.
Save dcousineau/7101607 to your computer and use it in GitHub Desktop.
Comma First indentation example
var test = 1
, another = 3
, yetanother = 4
, array = [
'member'
, 'element'
, 'item'
]
, variable = 5;
var singleassign = [
'member'
, 'element'
, 'item'
];
var object = {
member: 1
, method: function() {
//noop
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment