0
parseJSON
To convert a JSON string to a JSON object
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 not useful information.
This can be quite handy if you need to modify a JSON object and pass it on in the http()
function.
Syntax
parseJSON(string)
Return
JSON
Examples
parseJSON(jsonString)
To convert a JSON string to a JSON object.
Use double quotes ("") for quotes within a string.
parseJSON("{
""test"": 123
}")
Result: {"test":123}
See also
formatJSON
which creates a JSON string of a valid JSON object.
Reply
Related articles
Content aside
- 2 mths agoLast active
- 69Views
-
1
Following