What's up with the conditional operator?

The value after the ? sign is assigned to the variable if the condition is trueIt assigns values based on conditionsThe value after the : sign is assigned to the variable if the condition is trueWe use it by putting a ! in before a boolean value

Boom! The conditional operator assigns values based on conditions. If the condition is true, the value after the ? sign is assigned; if not, the value after the : sign is used.

Yikes! The conditional operator assigns values based on conditions. If the condition is true, the value after the ? sign is assigned; if not, the value after the : sign is used.