JSFiddle - React, Tailwind, and code Playground
by lavisha99
JavaScript
/* L3 Conditionals
if....else,nested if, logical operations, switch statements, ternary operations.
*/
//L3.1 if..esle
/*
if (condition) {
code to run if true
}
run remaining code
if (condition) {
code to run if true
}else if {
code to run if not true
}
run remaining code
*/