Skip to content

Instantly share code, notes, and snippets.

@nulayuhz
Last active August 29, 2015 14:09
Show Gist options
  • Save nulayuhz/113059513eda13bb8adb to your computer and use it in GitHub Desktop.
Save nulayuhz/113059513eda13bb8adb to your computer and use it in GitHub Desktop.
There is no elseif in JavaScript
if (a) {
//...a
} else if (b) {
//...b
} else {
//...c
}
//...is actually:
if (a) {
// ...a
} else {
if (b) {
//...b
} else {
//...c
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment