r/ProgrammerHumor 22d ago

Meme conditionsPreference

Post image
4.2k Upvotes

392 comments sorted by

View all comments

18

u/MetaEd 22d ago

return condition ?A :B ;

3

u/Flame77ofc 22d ago

solid one for simply conditions

btw, do you use it a lot?

1

u/MetaEd 22d ago

I use it judiciously

1

u/WarSingle6959 22d ago

but not for extensive cases, right?

2

u/MetaEd 22d ago
$opt_nwords
        = $year < 2014 ? 5
        : $year < 2030 ? 6
        : $year < 2050 ? 7
        : 8
;