JSON Parser Xojo plugin

JSONArray.AppendArray Method

Appends another JSONArray to the back of the Array.

AppendArray(
   value as JSONArray)

Parameters

value
The array to be appended to the back of the array.

Remarks

Important difference between appending array with Append vs doing it with AppendArray is that Append would append the array as one element containing its array value in nodes under it, while AppendArray merges each element of an array to back of the array

See Also

JSONArray Class