Predict the if/else Output
Predict OutputBeginner
Question
What does this code print to the console?
Code
let score = 75;
if (score >= 80) {
console.log("A");
} else if (score >= 60) {
console.log("B");
} else {
console.log("C");
}
Hint
Check each threshold in order: 80 first, then 60.
Explanation
score is 75. The first condition score >= 80 is false (75 < 80). The second condition score >= 60 is true (75 >= 60), so the "B" branch runs. The else branch is skipped. The output is: B
Related Resources
Related Lessons
- Conditions (if/else)
Learn how 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.