A program containing if-then(-else) statements if Condition then Statement else Statement (Or) if Condition then Statement code example
Example 1: IF else statement
var age=20;
if (age < 18) {
console.log("underage");
} else {
console.log("let em in!");
}
Example 2: IF else statement
var age=20;
if (age < 18) {
console.log("underage");
} else {
console.log("let em in!");
}