Represents a value that can be of type T, null, or undefined. Useful for handling optional values in a type-safe manner.
T
null
undefined
const value: Maybe<number> = null; Copy
const value: Maybe<number> = null;
Represents a value that can be of type
T
,null
, orundefined
. Useful for handling optional values in a type-safe manner.