Furthermore:
NULL isn’t truthy, unknown, undefined, nonexistent, nil, or zero Some languages are misleading coders about whatNULL means. A recent project highlighted just how tricky this can be. For example in JavaScript: let maybeNull = null;
let isNull = maybeNull === null;
let isntNull = maybeNull != null;
console.log({isNull, …