โternary conditional operator (a ? b : c)
Swift โฉ operator โฉ ternary
A special shorthand way to write a conditional statement, also called ternay conditional operator, ternary operator, conditional operator.
// ternary conditional operator
condition ? trueValue : falseValue
Last updated
Was this helpful?