4 W's and 1 H of JSON

Questions about JSON

In this blog we will look into

What is JSON ?

JSON (JavaScript Object Notation) is a lightweight data-interchange format that is used widely to interchange data between a server and a client. It makes easy for both humans to read and write, and for machines to parse and generate. It is used represents data as key-value pairs organized into objects (enclosed in {}) and arrays (enclosed in []).

Who Invented JSON and Why JSON was invented?

JSON was invented by Douglas Crockford in the early 2000s as a way to simplify data exchange on the web. He saw it as a lightweight alternative to XML, which was commonly used but more complex. JSON quickly became popular due to its simplicity and compatibility with JavaScript, making it ideal for web applications.

When was the JSON was invented?

JSON was invented in the early 2000s, with its formal specification emerging around 2001. Douglas Crockford popularized JSON as a data format for web applications, particularly because of its simplicity and ease of use with JavaScript. JSON gained widespread adoption quickly and was officially standardized by ECMA in 2013.
JSON was invented by Douglas Crockford in the early 2000s as a way to simplify data exchange on the web. He saw it as a lightweight alternative to XML, which was commonly used but more complex. JSON quickly became popular due to its simplicity and compatibility with JavaScript, making it ideal for web applications.

How JSON took over the XML?

JSON took over XML due to its simplicity, lightweight structure, and easier readability, especially for JavaScript-based web applications. Unlike XML, JSON requires less code to represent data, which makes it faster to parse and transmit. JSON’s compatibility with JavaScript also made it a natural fit for web APIs and data exchange, leading to its rapid adoption over XML.