Type alias Falsy

Falsy: false | "" | 0 | Nullable

Represents a type that includes falsy values in JavaScript. Falsy values are those that coerce to false when used in a boolean context. This includes false, an empty string (''), numeric zero (0), null, and undefined.