Conditional Statements in JS

Conditional Statements

Example:

let time = 18;
if (time < 12) {
    console.log("Good morning!");
} else if (time < 18) {
    console.log("Good afternoon!");
} else {
    console.log("Good evening!");
}