Hacker News new | ask | show | jobs
by firasd 1378 days ago
Actually this type of over-usage of ternary operators is not a PHP thing.. it's very prevalent in the JavaScript world
1 comments

None of those snippets contain a ternary operator.

?? is the Null Coalescing Operator[1]

?-> is the nullsafe operator[2]

[1]: https://www.php.net/manual/en/language.operators.comparison.... [2]: https://www.php.net/manual/en/language.oop5.basic.php#langua...

Oh my mistake. Still stuff like 'return a || b' is the kind of thing I see in JS way more than in PHP codebases
Probably because the Boolean operators in JS return the left or right side of the expression, rather than a Boolean.

It was an okay-ish way to get a default/fallback value before JS got a proper coalescing operator.