Array syntax for json arrays.
JSONException if type is not JSONType.array.
JSONValue j = JSONValue( [42, 43, 44] ); assert( j[0].integer == 42 ); assert( j[1].integer == 43 );
See Implementation
Array syntax for json arrays.