Use else to run code when the condition is false:
let age = 15
if (age >= 18) {
console.log("Adult")
} else {
console.log("Minor")
}
Exactly one branch runs. If the condition is true, the first block runs. If false, the else block runs. This handles the "otherwise" case.