if then else then javascript code example
Example 1: else if javascript
if (condition1) {
// code to be executed if condition1 is true
} else if (condition2) {
// code to be executed if the condition1 is false and condition2 is true
} else {
// code to be executed if the condition1 is false and condition2 is false
}
Example 2: javascript if
if (32 == 32) {
console.log('32 is equil to 32!');
}