append
The append method appends a value to the JSON array.
Syntax
append( value )
Arguments
| Argument | Description | 
|---|---|
| value | (lua_json_type) The value to append to the array. This can be a Boolean, float, integer, string, LuaJsonArray, LuaJsonObject, LuaJsonValue, or nil. | 
Example
local myJsonArray = LuaJsonArray:new(4,"a string",true) myJsonArray:append(6) -- the array is now [4, "a string", true, 6]