Create a new instance of JSON array data.
Source position: fpjson.pp line 560
|  public constructor TJSONArray.Create; overload; | 
| const Elements: array of Const | 
| ); overload; | 
| Elements | 
 | Data to add to the array. | 
Create creates a new JSON array instance, and initializes the data with Elements. The elements are converted to various TJSONData instances, instances of TJSONData are inserted in the array as-is.
The data type of the inserted objects is determined from the type of data passed to it, with a natural mapping. A Nil pointer will be inserted as a TJSONNull value.
If an invalid class or not recognized data type (pointer) is inserted in the elements array, an EConvertError exception will be raised.
| 
 | JSON factory: Get the JSONData class types to use. |