X === nothing vs x isa Nothing

A few comments:

=== is preferred to == as per doc here as @baggepinnen pointed out.

isnothing simply uses ====

I saw both x === nothing and x isa Nothing in the Julia base source code.