js json stringfy beutify code example
Example 1: json stringify pretty
JSON.stringify(jsonobj,null,'\t')
Example 2: js json_encode pretty
var str = JSON.stringify(obj, null, 2); // spacing level = 2
Example 3: js json stringfy beutify
JSON.stringify(obj, undefined, 2);
Example 4: pretty print json in console
new JSONObject(json).toString(2)