English
tutorials

Getting Started with JSON Formatting

By fly3m •

Getting Started with JSON Formatting

JSON (JavaScript Object Notation) is a lightweight data-interchange format…

Why format JSON?

Formatting JSON makes it human-readable…

{
  "key": "value",
  "nested": {
    "foo": "bar"
  }
}