null is a javascript data type that is unfortunately reported as an object by the typeof operator.
null means no object value, whereas undefined means no value.
typeof null returns object, and not null, despite Null being a type of its own.
x=null;
console.log(typeof(x));
Confusingly, typeof reports the type of null as “object”, but the ECMA-Script standard describes it as a distinct type.
console.log("null has the type "+typeof(null));
The Nullish coalescing operator (??) is a short-circuiting operator meant to handle default values.
nullish means that the value is equal to null or undefined.
Syntax:
leftOperand ?? RightOperand
where:
Example:
const enable = props.enabled ?? true;
https://v8.dev/features/nullish-coalescing