isArray
Description
Determines whether the passed value is an array/list.
Input / Parameter
Name | Description | Input Type | Default | Options | Required |
---|---|---|---|---|---|
value | The value to be checked. | Any | - | - | Yes |
Output
Description | Output Type |
---|---|
Returns true if value is an array otherwise false. | Boolean |
Callback
N/A
Video
Coming soon.
Example
isArray: True
Drag the
isArray
function into the event flow.For value, use the function
toArray
to pass an array to theisArray
function.isArray
will returntrue
since the value is an array.
isArray: False
Drag the
isArray
function into the event flow.Pass the value
This is a string
to the function.isArray
will returnfalse
since the value is a string and not an array.
Links
Last updated