size
The size
method returns the size of the JSON array.
Syntax
size()
Returns
(integer). The number of values in the array.
Example
local myJsonArray = LuaJsonArray:new(4,"a string",true) print ("Array size is " , myJsonArray:size() ) -- Array size is 3