The "ternary operator" expression is now almost equivalent to the ternary conditional operator:
condition ? trueExpression : falseExpression;
However, "ternary operator" only means that it takes three arguments. I'm just curious, are there any languages with any other built-in ternary operators besides conditional operator and which ones?