Type an if / else if chain space to flip Type an if / else if chain Answer if (score >= 90) { grade = 'A'; } else if (score >= 80) { grade = 'B'; } Conditions are tested top to bottom; the first true branch runs and the rest are skipped.