โž•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