Open In App

JSON full form

 

JSON stands for JavaScript Object Notation. It is a text-based data interchange format to maintain the structure of the data. JSON is the replacement of the XML data exchange format in JSON. It is easy to struct the data compare to XML. It supports data structures like arrays and objects and JSON documents that are rapidly executed on the server. It is also a Language-Independent format that is derived from JavaScript. 



The official media type for the JSON is application/json and to save those file .json extension. JSON was initially created by Douglas Crockford in the early 2000s, and first standardized in 2013 after that in 2007 JSON’s latest standard was published. 

Syntax: 






{
  "Name": "GeeksforGeeks",
  "Estd": 2009,
  "age": 10,
  "address": {
    "buildingAddress": "5th & 6th Floor Royal Kapsons, A- 118",
    "city": "Sector- 136, Noida",
    "state": "Uttar Pradesh (201305)",
    "postalCode": "201305"
  },

Characteristics of JSON:

Advantages of JSON:

Disadvantages of JSON:

Article Tags :