DEV Community

Discussion on: Yo, Yo, Check Null

Collapse
 
sam_ferree profile image
Sam Ferree

I like the readability of that API

Minor suggestion, use “argument is null” instead of “argument == null”

The == operator can be overloaded and we can’t guarantee the overload null checks it’s arguments.

Collapse
 
callmewhy profile image
Haiyang Wang

Thanks Sam! I just updated the sample code with 'is null'. You are totally right.