convert json code example

Example 1: js string to object

JSON.parse()

Example 2: how to convert json to javascript object

local storage JSON.parse

Example 3: online json viewer

Online JSON beautifier: https://codebeautify.org/jsonviewer

JSON pretty print in Python:

import json
your_json = '["foo", {"bar":["baz", null, 1.0, 2]}]'
parsed = json.loads(your_json)
print(json.dumps(parsed, indent=4, sort_keys=True))

Example 4: convert json to object

Jackson Data-bind depdendency that take care of 
Converting between 
JSON to Java Object 
and 
Java Object to JSON

<dependency>
    <groupId>com.fasterxml.jackson.core</groupId>
    <artifactId>jackson-databind</artifactId>
    <version>2.12.0</version>
</dependency>

Tags:

Php Example