Skip to content

Instantly share code, notes, and snippets.

@tebriel
Created March 1, 2012 18:46
Show Gist options
  • Save tebriel/1952059 to your computer and use it in GitHub Desktop.
Save tebriel/1952059 to your computer and use it in GitHub Desktop.
if (thisThing())
doThat();
else
doThis();
alsoThat();
// Is not the same as:
if (thisThing()) {
doThat();
} else {
doThis();
alsoThat();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment