Skip to content

Instantly share code, notes, and snippets.

@jeroenbourgois
Created September 13, 2012 19:55
Show Gist options
  • Save jeroenbourgois/3717142 to your computer and use it in GitHub Desktop.
Save jeroenbourgois/3717142 to your computer and use it in GitHub Desktop.
// bad
var a=0;
if(i==='ok') alert('Foo');
i+=2;
a=d*b*c;
if(a>b&&b<d||1===1) alert('Doh!');
// good
var a = 0;
if(i === 1) alert('Foo');
i += 2;
a = d * b * c;
if(a > b && b < d || 1===1) alert('Doh!);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment