if else em js code example

Example 1: js if else

If - Else Statements
if (condition) {
// what to do if condition is met
} else {
// what to do if condition is not met
}

Example 2: JavaScript if else and else if

if (condition) {
  //  block of code to be executed if the condition is true
}
//-------------
if (hour < 18) {
  greeting = "Good day";
}
//-------------
if (condition) {
  //  block of code to be executed if the condition is true
} else {
  //  block of code to be executed if the condition is false
}
//-------------
if (hour < 18) {
  greeting = "Good day";
} else {
  greeting = "Good evening";
}
//-------------
if (time < 10) {
  greeting = "Good morning";
} else if (time < 20) {
  greeting = "Good day";
} else {
  greeting = "Good evening";
}