Operator sets value for element of JSON object by key.
If JSON value is null, then operator initializes it with object and then sets value for it.
JSONException if type is not JSONType.object or JSONType.null_.
JSONValue j = JSONValue( ["language": "D"] ); j["language"].str = "Perl"; assert( j["language"].str == "Perl" );
See Implementation
Operator sets value for element of JSON object by key.
If JSON value is null, then operator initializes it with object and then sets value for it.