Skip to content

Instantly share code, notes, and snippets.

@mde
Created April 19, 2010 21:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mde/371696 to your computer and use it in GitHub Desktop.
Save mde/371696 to your computer and use it in GitHub Desktop.
// If foo is true, then we do all this stuff
if (foo) {
// Do foo stuff
}
// This is the stuff that happens in the else case
else {
// asdf here is 'QWER' because we like it
var asdf = 'QWER';
// zoobie ... well, what to say about zoobie
var zoobie = 'FRANG';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment