if / else
This page needs a recent browser (with SharedArrayBuffer support). Please update Chrome, Edge, Firefox or Safari to the latest version.
Making decisions
if (test) { ... }runs its block only when the test istrue.elsegives the path to take when the test isfalse.
let age = 20;
if (age >= 18) {
console.log("adult"); // → adult
} else {
console.log("minor");
}
Many paths with else if
- Add
else iffor more choices. JavaScript checks each test top to bottom. - The first test that is
truewins; the rest are skipped.
let mark = 72;
if (mark >= 70) {
console.log("A"); // → A
} else if (mark >= 50) {
console.log("B");
} else {
console.log("C");
}
Explore
Which branch runs?
Tests are checked top-down; the first true one runs and the rest are skipped.
Watch out
- Put the test in
( )and the block in{ }. - Inside a test, compare with
===(day === "Sat"), never a single=.
Common mistakes
- The condition goes in
( )and the body in{ }. - Compare with
===.
Now you try
- Read the value, then choose with
if/else. - Press Check answer to test it.
let n = 5. If n is greater than 0 log positive, otherwise log not positive. (It should log positive.)
Click Run to see the output here.
let mark = 65. Log A for 70 or more, B for 50–69, and C for less. (It should log B.)
Click Run to see the output here.
let n = 4. Log even if n % 2 === 0, otherwise log odd. (It should log even.)
Click Run to see the output here.