Making a Choice with if
Do something only when a condition is true.
Making Choices 🤔
Hi, decision hero! 🌟 Computers can make choices, just like you!
We use a magic word if to say "IF this is true, do something". 🪄
if (true) {
console.log("Yes! 🎉")
}What is True? ✅
Some things are true and some are false.
"The sky is up" is true ☀️. "Fish can fly" is false 🐟. Computers love true and false!
console.log(true)
console.log(false)All lessons in this course
- Making a Choice with if
- Plan B with else
- Comparing Things
- More Choices with else if