ISARRAY

b = ISARRAY (x)

Returns true if x is an array.

Example

A = [1,2,3]
print IsArray(A)    ' Output 1

A = {"x":1, "y":2}
print IsArray(A)    ' Output 0 (is a map)

A = 1
print IsArray(A)    ' Output 0 (is a number)

A = "abc"
print IsArray(A)    ' Output 0 (is a string)
Data
If there is insufficient information on this page and you wish learn more about ISARRAY, please send an email to smallbasic@gmail.com. You can help to improve information about ISARRAY by submitting a pull request, click View Source for details. Note, an offline language reference text file is also available - see the Download section.