Pretty Printing JSON in Javascript
I never realized the native JSON implementation supports pretty printing:
JSON.stringify({ "pants": true }, null, 4);Not bad!
I never realized the native JSON implementation supports pretty printing:
JSON.stringify({ "pants": true }, null, 4);Not bad!