Ternary ``?:'' is the conditional operator, like C. It works much like an
if-then-else statement. If the argument that comes before the "?" is true, then the argument
before the ":" is returned, else the argument after the ":" is returned. This is illustrated
below.
|