JSON means Javascript Object Notation. It is an open standard file and data interchange format using human-readable text to store and transmit data objects. JSON file names use the .json extension. Though it was derived from Javascript, now it is a language-independent data format.
Crockford first specified and popularized the JSON format. JSON grew out of a need for a stateless, real-time server-to-browser communication protocol. JSON's basic data types are Number, String, Boolean, Array, Object, and Array. The official MIME type for JSON text is application/text. text/json and text/javascript are also supported by most of the applications.
Example:
{
"firstName": "Rakib",
"lastName": "Trofder",
"isAlive": true,
"age": 23,
}
Comments
Post a Comment