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.
The first one. Readability is quicker, and you don't have to stack context in your head if it's ==.
Personally though, I prefer what I call short circuiting. Return right away if it's null, basically input sanitization.