Skip to content

Instantly share code, notes, and snippets.

@bq1990
Created February 26, 2015 21:30
Show Gist options
  • Save bq1990/8b0e0c4fb9ae0b9f34e3 to your computer and use it in GitHub Desktop.
Save bq1990/8b0e0c4fb9ae0b9f34e3 to your computer and use it in GitHub Desktop.
Javascript pretty json
function prettyJSON(obj) {
console.log(JSON.stringify(obj, null, 2));
}
// obj -> value to convert to a JSON string
// null -> (do nothing)
// 2 -> 2 spaces per indent level
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment