parseJSON
To convert a JSON string to a JSON object
Last updated
To convert a JSON string to a JSON object
Last updated
This function converts a string to a JSON object.
The string needs to be written as a valid JSON object. Otherwise, the function will return unuseful stuff. Not good.
This can be quite handy if you need to modify a JSON object and pass it on in the http()
function.
parseJSON(string)
JSON
parseJSON(jsonString)
To convert a JSON string to a JSON object.
Use double quotes ("") for quotes within a string.
Result: {"test":123}
formatJSON
, which creates a JSON string of a valid JSON object.