151
Elvis
(feddit.it)
Post funny things about programming here! (Or just rant about your favourite programming language.)
been programming since 2008. the fuck is an elvis operator?
Been programming since the 80s, ditto.
Ternary if?then:else
gotacha. i've only ever heard them called ternaries. maybe i'm old. maybe i'm too young. definitely one of the two
It specifically refers to this shorthand
?:
that works like this:The condition is also the value if it is truthy
It's a shorthand for writing this:
This is equivalent:
The answers confusing it with the ternary operator are wrong.