0Pricing
Javascript for Kids · Lesson

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

  1. Making a Choice with if
  2. Plan B with else
  3. Comparing Things
  4. More Choices with else if
← Back to Javascript for Kids