Is there an 'else if' in Javascript/jQuery?

The "else if" statement in JS is like writing nested if/else statements but the else statements don't have brackets making it on one line. :)
if (...) {
     
} else {
     if (...) {

     } else {
          if (...) {
          
          }
     }
}
GET ON AIM, I need your help!!! :)

…puh-lease :slight_smile:

Like I said, you really don't need to write it that way.