Array Length
Module Info:
moduleType: "internal",
moduleName: "arrayLength"
Description
The arrayLength
function returns the total length of an array.
Inputs
Name | Type | Required |
---|---|---|
array | Array<any> | ✔ |
Outputs
Name | Type |
---|---|
result | number |
Examples
Inputs | Outputs |
---|---|
array | result |
[ "first", "second", "third" ] | 3 |
[ "first", "second", "third", "fouth" ] | 4 |
[ 4, "test", "foo" ] | 3 |