Ternary OperatorThe ternary operator is also known as the conditional operator. A ternary operator is a group of : and ? symbols in a specified sequence given below.
Condition ? Expression1 : Expression2
Working...
If the condition is true then expression 1 will be executed and if the condition is false then Expression2 will be executed.