Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 296 Bytes

555-data-isarray.markdown

File metadata and controls

21 lines (14 loc) · 296 Bytes

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) 
close