8 Ternary Conditional Operator in Swift

Опубликовано: 11 Июнь 2026
на канале: Shiko Matlala
15
0

The ternary conditional operator is a special operator with three parts, which takes the form question ? answer1 : answer2. It’s a shortcut for evaluating one of two expressions based on whether question is true or false. If question is true, it evaluates answer1 and returns its value; otherwise, it evaluates answer2 and returns its value.

https://docs.swift.org/swift-book/Lan...