how to pretty print json in javascript keeping spacing under each other code example
Example 1: json.stringify pretty
JSON.stringify(obj, null, 2);
Example 2: pretty print json in console
new JSONObject(json).toString(2)
JSON.stringify(obj, null, 2);
new JSONObject(json).toString(2)