Predict JavaScript if/else Output
Predict OutputBeginner
Question
What does this code print?
Code
const age = 16;
if (age >= 18) {
console.log("adult");
} else {
console.log("minor");
}
Hint
16 is less than 18.
Explanation
age is 16. The condition age >= 18 is false (16 < 18), so the else branch runs and prints: minor
Related Resources
Related Lessons
- Conditions
Learn how JavaScript if/else conditions work.
Look up unfamiliar terms
A beginner-friendly glossary explains jargon in plain English — variables, functions, DOM, Promise, and more.
Decode error messages
Plain-English explanations of common errors — what they mean, why they happen, and how to fix them.
Build real projects
Apply what you learned by building guided projects with starter code and solutions.