• 35 Posts
  • 1.39K Comments
Joined 1 year ago
cake
Cake day: August 10th, 2023

help-circle








  • QuazarOmegaAtoProgrammer Humor@lemmy.mlElvis
    link
    fedilink
    arrow-up
    7
    ·
    3 days 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

































Moderates