Understanding JSON in JavaScript

Timothy Robards
8 min readJan 10, 2019

JSON (JavaScript Object Notation) is a lightweight format for sharing data. Although it’s derived from JavaScript — it may be used with many programming languages. In this article however, we’ll be focusing on the use of JSON in JavaScript.

Where will we use JSON?

Some scenarios include:

  • Data storage
  • Data configuration and…

--

--