The ternary operator simplifies conditional expressions similar to if / else.
Its syntax is condition ? <expression if true> : <expression if false>. Here’s an example with if / else:
Before:
if |
Here’s the same example using the ternary operator:
With Ternary
|