Skip to content

Instantly share code, notes, and snippets.

@squishykid
Created September 20, 2014 08:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save squishykid/21e884f7042db5e39773 to your computer and use it in GitHub Desktop.
Save squishykid/21e884f7042db5e39773 to your computer and use it in GitHub Desktop.
if structure
if (condition) {
//do stuff 1
} else if (cond2) {
//do stuff 2
} else if (cond3) {
//do stuff 3
} else {
//if others fail
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment