json.stringify with pretty print code example
Example 1: json stringify pretty
JSON.stringify(jsonobj,null,'\t')
Example 2: json.stringify pretty
JSON.stringify(obj, null, 2);
JSON.stringify(jsonobj,null,'\t')
JSON.stringify(obj, null, 2);