The condition to evaluate.
The value to return if the condition is true.
The value to return if the condition is false.
Any The value of the condition.
Tertiary operator. If condition is true, return the first value. Otherwise return the second value.
Tertiary operator. If condition is true, return the first value. Otherwise return the second value. Note: Both
trueValueandfalseValuewill be evaluated if they are derived from function calls.