More Choices with else if
Pick between several options.
More Choices! 🎚️
Hi, choice master! 🌟 Sometimes we have MORE than two choices.
We use else if to add more doors to check! 🚪🚪🚪
let n = 2
if (n === 1) {
console.log("One")
} else if (n === 2) {
console.log("Two! ✌️")
} else {
console.log("Something else")
}A Chain of Choices ⛓️
else if goes between if and else.
The computer checks each door from top to bottom until one is true! 🪜
let color = "red"
if (color === "blue") {
console.log("Sky! 🔵")
} else if (color === "red") {
console.log("Apple! 🍎")
}All lessons in this course
- Making a Choice with if
- Plan B with else
- Comparing Things
- More Choices with else if