684 B
684 B
Home > @apextoaster/js-utils > lengthOf
lengthOf() function
Calculate the length of an array or value.
Arrays return their length, single values return 1, and nil values return 0. This counts the number of elements that setOrPush would add.
Signature:
export declare function lengthOf(val: Maybe<unknown>): number;
Parameters
Parameter | Type | Description |
---|---|---|
val | Maybe<unknown> |
Returns:
number