Skip to content

Instantly share code, notes, and snippets.

@lmzach09
Last active July 27, 2019 19:00
Show Gist options
  • Save lmzach09/0b5a509a5447e8660b295d9b8fd44fab to your computer and use it in GitHub Desktop.
Save lmzach09/0b5a509a5447e8660b295d9b8fd44fab to your computer and use it in GitHub Desktop.
Stringify a JS object to JSON string with 4 spaces formatting
let obj = { "key": "value" };
let myString = JSON.stringify(obj, null, 4); // 4 space indentations
console.log(myString);
// {
// "key": "value"
// }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment