Represents values that are either null or undefined.
null
undefined
const value: Nullish = null;const other: Nullish = undefined; Copy
const value: Nullish = null;const other: Nullish = undefined;
Represents values that are either
nullorundefined.