Below is the example of the JSON parse() Method.
- Example:
<script>varobj = JSON.parse('{"var1":"Geeks","var2":"forGeeks!"}');document.write(obj.var1 +""+ obj.var2);</script>chevron_rightfilter_none - 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.
<!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> |
Output:

Example 2: This example use reviver function to parse a string and return the JavaScript object.
<!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> |
Output:

Supported browsers:
- Chrome 4.0
- Firefox 3.5
- Opera 11.0
- Internet Explorer 8.0
- Safari 4.0
Recommended Posts:
- JavaScript SyntaxError - JSON.parse: bad parsing
- How to universally parse JSON into blocks using jQuery ?
- How to convert JSON string to array of JSON objects using JavaScript ?
- JSON | modify an array value of a JSON object
- JavaScript Date parse() Method
- How to parse URL using JavaScript ?
- How to parse a URL into hostname and path in javascript?
- Node.js | path.parse() Method
- Node.js | querystring.parse() Method
- JavaScript JSON stringify() Method
- Why is Parse Server the future of Backend As A Service?
- Python | Parse a website with regex and urllib
- Node | url.parse(urlString, parseQueryString, slashesDenoteHost) API
- How to parse and process HTML/XML using PHP ?
- Javascript | JSON PHP
- JavaScript JSON
- Converting JSON text to JavaScript Object
- JavaScript | JSON HTML
- JavaScript | JSON Arrays
- Deserializing a JSON into a JavaScript object
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.


