Open topic with navigation
util.JSONArray.getSize() returns a length of the JSON array.
Syntax
CALL util.JSONArray.getSize()
Usage and examples
MAIN
DEFINE j util.JSONArray
LET j = util.JSONArray.parse('["Ford", "BMW", "Fiat"]')
DISPLAY j.GetSize()END MAIN