Skip to content

Instantly share code, notes, and snippets.

@brunoziie
Created September 1, 2016 14:13
Show Gist options
  • Save brunoziie/a3a195c5af3df3304cf29c40b400be33 to your computer and use it in GitHub Desktop.
Save brunoziie/a3a195c5af3df3304cf29c40b400be33 to your computer and use it in GitHub Desktop.
[YES]
function () {
//..
}
function (foo, bar) {
//..
}
[NO]
function(){
//..
}
function(foo,bar){
//..
}
[YES]
return {
//..
}
[NO]
return{
//..
};
[YES]
var foo = [1, 2, 3];
[NO]
var foo = [1,2,3];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment