Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org
#

Q62 How do I code if-else-if?

You are here: irt.org | FAQ | JavaScript | Misc | Q62 [ previous next ]

if (a == b) {
    ...
}
else if (c == d) {
    ...
}
else if (e == f) {
    ...
}
else if (g == h) {
    ...
}

©2018 Martin Webb