JavaScript JSON parse() Method

Below is the example of the JSON parse() Method.

  • Example:
    filter_none

    edit
    close

    play_arrow

    link
    brightness_4
    code

    <script>
            var obj = JSON.parse('{"var1":"Geeks", 
                                   "var2":"forGeeks!"}');
              
            document.write(obj.var1 + "" + obj.var2);
    </script>                   

    chevron_right

    
    

  • Output:
    GeeksforGeeks!

The JSON.parse() method in JavaScript is used to parse a JSON string which is written in a JSON format and return a JavaScript object.

Syntax:

JSON.parse( string, function )

Parameters: This method accepts two parameter as mentioned above and described below:

  • string: It is required parameter and it contains string which is written in JSON format.
  • function: It is optional parameter and used to transform result. The function called for each item.

More example codes for the above method are as follows:



Example 1: This example parse a string and return the JavaScript object.

filter_none

edit
close

play_arrow

link
brightness_4
code

<!DOCTYPE html>
<html>
  
<head>
    <title>
        JavaScript JSON parse() Method
    </title>
</head>
  
<body>
      
    <h1>GeeksforGeeks</h1>
      
    <h2>
        JavaScript JSON parse() Method
    </h2>
      
    <p id="GFG"></p>
      
    <!-- Script to parse a string and return
        JavaScript object -->
    <script>
        var obj = JSON.parse('{"var1":"Hello", 
                               "var2":"Geeks!"}');
          
        document.getElementById("GFG").innerHTML
                = obj.var1 + " " + obj.var2;
    </script>
</body>
  
</html>                    

chevron_right


Output:
Image

Example 2: This example use reviver function to parse a string and return the JavaScript object.

filter_none

edit
close

play_arrow

link
brightness_4
code

<!DOCTYPE html>
<html>
  
<head>
    <title>
        JavaScript JSON parse() Method
    </title>
</head>
  
<body>
      
    <h1>GeeksforGeeks</h1>
      
    <h2>
        JavaScript JSON parse() Method
    </h2>
      
    <p id="GFG"></p>
      
    <!-- Script to parse a string and return
        JavaScript object -->
    <script>
        var text = '{ "var1":"Amanda", "gender":"male"}';
          
        var obj = JSON.parse(text, function (key, value) {
            if (value == "male") {
                return ("female");
            } else {
                return value;
            }
        });
        document.getElementById("GFG").innerHTML
                = obj.var1 + ", " + obj.gender; 
    </script>
</body>
  
</html>                    

chevron_right


Output:
Image

Supported browsers:

  • Chrome 4.0
  • Firefox 3.5
  • Opera 11.0
  • Internet Explorer 8.0
  • Safari 4.0

full-stack-img




My Personal Notes arrow_drop_up

Image
Check out this Author's contributed articles.

If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.

Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.