Conditional Statements
age = 20
if (age >= 18) { // The expression is true
console.log("Hello"); // This will be executed
}
if (age <= 18) { // The expression is false
console.log("Bye"); // This will not be executed
}score = 70
if (score >= 60) {
console.log("You passed!"); // This will be executed if true
} else {
console.log("Try again."); // This will be executed if false, this execute
}Falsy and Truthy Values
Last updated