Returns the JSONType of the value stored in this structure.
string s = "{ \"language\": \"D\" }"; JSONValue j = parseJSON(s); assert(j.type == JSONType.object); assert(j["language"].type == JSONType.string);
See Implementation
Returns the JSONType of the value stored in this structure.