Let's now learn what JSON is, in the next video.
In the last video, you learnt what JSON is. JSON stands for JavaScript Object Notation. It is a lightweight data-interchange format.
A valid JSON can be written in either of the following two formats or a mixture of both:
A collection of name-value pairs, which is known as an object in many programming languages, or
An ordered list of values, which is known as an array in many programming languages.
Let's now understand how JSON is different from JavaScript Object Literals.
Let's look at another important aspect of JSON in the following video.