otherwise
Returns a fallback
value if primary
is null
.
Description
The otherwise
function evaluates its arguments and replaces primary
with
fallback
where primary
would be null
.
primary: any
The expression to return if not null
.
fallback: any
The expression to return if primary
evaluates to null
. It must have the same
type as primary
.