Open In App

JSON Introduction

Last Updated : 06 Dec, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

JSON stands for JavaScript Object Notation. It is a format for structuring data. This format is used by different web applications to communicate with each other. 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 the 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 Introduction

Features of JSON:

  • Easy to understand: JSON is easy to read and write.
  • Format: It is a text-based interchange format. It can store any kind of data in an array of video, audio, and image anything that you required.
  • Support: It is light-weighted and supported by almost every language and OS. It has a wide range of support for the browsers approx each browser supported by JSON.
  • Dependency: It is an Independent language that is text-based. It is much faster compared to other text-based structured data.

JSON Syntax Rules: Data is in name/value pairs and they are separated by commas. It uses curly brackets to hold the objects and square brackets to hold the arrays.

 

Example:

Javascript




{
    "Courses": [
        {
            "Name" : "Java Foundation",
            "Created by" : "Geeksforgeeks",
            "Content" : [ "Java Core", "JSP",
                        "Servlets", "Collections" ]
        },
  
        {
            "Name" : "Data Structures",
            "also known as" : "Interview Preparation Course",
            "Topics" : [ "Trees", "Graphs", "Maps" ]
        }
    ]
}


Advantages of JSON:

  • JSON stores all the data in an array so data transfer makes easier. That’s why JSON is the best for sharing data of any size even audio, video, etc.
  • Its syntax is very easy to use. Its syntax is very small and light-weighted that’s the reason that it executes and response in a faster way.
  • JSON has a wide range for the browser support compatibility with the operating systems, it doesn’t require much effort to make it all browser compatible.
  • On the server-side parsing the most important part that developers want, if the parsing will be fast on the server side then the user can get the fast response, so in this case JSON server-side parsing is the strong point compare tot others.

Disadvantages of JSON:

  • The main disadvantage for JSON is that there is no error handling in JSON, if there was a slight mistake in the JSON script then you will not get the structured data.
  • JSON becomes quite dangerous when you used it with some unauthorized browsers. Like JSON service return a JSON file wrapped in a function call that has to be executed by the browsers if the browsers are unauthorized then your data can be hacked.
  • JSON has limited supported tools that we can use during JSON development.

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads