json stringify pretty js 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: json.stringify pretty
JSON.stringify(obj, null, 2);