The append
method appends a value to the JSON array.
append( value )
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. |
local myJsonArray = LuaJsonArray:new(4,"a string",true) myJsonArray:append(6) -- the array is now [4, "a string", true, 6]
|