147
Elvis (feddit.it)
submitted 3 months ago by Sleepzy@feddit.it to c/programmerhumor@lemmy.ml
you are viewing a single comment's thread
view the rest of the comments
[-] luciferofastora@lemmy.zip 4 points 3 months ago
[-] Cube6392@beehaw.org 3 points 3 months ago

gotacha. i've only ever heard them called ternaries. maybe i'm old. maybe i'm too young. definitely one of the two

[-] QuazarOmega@lemy.lol 8 points 3 months ago

It specifically refers to this shorthand ?: that works like this:

$value = $thing_that_could_be_truthy ?: 'fallback value';

# same as

$value = $thing_that_could_be_truthy ? $thing_that_could_be_truthy : 'fallback value';

The condition is also the value if it is truthy

this post was submitted on 17 Nov 2024
147 points (100.0% liked)

Programmer Humor

33428 readers
626 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS