5.4.3. else if Statements¶
/*If-else statements allow us to construct two alternative paths.
A single condition determines which path will be followed. We can
build more complex conditionals using an else if clause. These allow
us to add additional conditions and code blocks, which facilitate more
complex branching.*/
let x = 10;
let y = 20;
if (x > y) {
console.log("x is greater than y");
} else if (x < y) {
console.log("x is less than y");
} else {
console.log("x and y are equal");
}
//x is less than y