Skip to main content

Array Length

Module Info:

moduleType: "internal",
moduleName: "arrayLength"

Description

The arrayLength function returns the total length of an array.

Inputs

NameTypeRequired
arrayArray<any>

Outputs

NameType
resultnumber

Examples

Inputs Outputs
array result
[ "first", "second", "third" ] 3
[ "first", "second", "third", "fouth" ] 4
[ 4, "test", "foo" ] 3