DEV Community

Armani Brown
Armani Brown

Posted on

if/else if

Currently doing a lesson on these, honestly it took me awhile to figure out how to use else if before using else. Then having to learn that I can use multiple else if, honestly ternary/switch statements just feels so much easier for my brain to create code for. I sat down for 30 minutes contemplating my entire existence before I could get back into figuring it out. lesson learned though use

if(){
}else if(){ //however many you like
}else{//use this last
}

Top comments (0)