javascript syntax if statement example
Example 1: if else javascript
if (time < 10) {
greeting = "Good morning";
} else if (time < 20) {
greeting = "Good day";
} else {
greeting = "Good evening";
}
Example 2: else if javascrit
if (condition1) {
// block of code to be executed if condition1 is true
}
else if (condition2) {
// block of code to be executed if the condition1 is false and
// condition2 is true
} else {
// block of code to be executed if the condition1 is false and
// condition2 is false
}
Example 3: javascript if statement
if (5 < 10) {
console.log("5 is less than 10");
} else {
console.log("5 is now bigger than 10")
}