I have a JSON string like this:
{"field1" : "value!", "field2" : "value2")
Now I want to add a parent element like this to get it well formatted as a result:
{id: 123, result : ["field1" : "value!", "field2" : "value2"])
How Do I do that with JSON.parse or JSON.stringify ?