javascript beautify json code example
Example 1: format JSON code javascript
console.log(JSON.stringify({ alpha: 'A', beta: 'B' }, null, '\t'));
// Result:
// '{
// "alpha": A,
// "beta": B
// }'
Example 2: js json stringfy beutify
JSON.stringify(obj, undefined, 2);