8
Which order do you prefer for null testing ternary expressions?
(programming.dev)
For discussing Java, the JVM, languages that run on the JVM, and other related technologies.
In java 9 there is
Objects.requireNonNullElse(obj, defaultValue)
That wouldn't help in the specific examples above but that's still nice to know about!
I did not know this existed, this is amazing.