Youth tournament entry

Players aged 13 to 18 need permission. A VIP may enter at any age. Suspended players cannot enter.

Age

Has permission

Has a VIP pass

Is suspended

Complete the choices, then check.

Important JavaScript

Use if, else if, and else to choose which code runs.

if (score >= 90) {
  console.log("Excellent");
} else if (score >= 60) {
  console.log("Passed");
} else {
  console.log("Try again");
}