isArray
Last updated
Determines whether the passed value is an array/list.
value
The value to be checked.
Any
-
-
Yes
Returns true if value is an array otherwise false.
Boolean
N/A
Coming soon.
Drag the isArray function into the event flow.

For value, use the function toArray to pass an array to the isArray function.


isArray will return true since the value is an array.
Drag the isArray function into the event flow.

Pass the value This is a string to the function.

isArray will return false since the value is a string and not an array.
Last updated