JavaScript von Victor Talmacinschi • June 14, 2022
if (condition1) {
// code to execute if condition1 is true
} else if (condition2) {
// code to execute if condition1 is false and condition2 is true
} else {
// code to execute if condition1 and condition2 are both false
}
0
22.829