A simple example on how to parse a string of JSON through the JSON.parse method.
You will need at least some knowledge of JavaScript if you want to use this example.
Example
Step by step guide
You will need at least some knowledge of JavaScript if you want to use this example.
Example
Code:
var jsonData = '{"name": "Oblivion"}'; // Get our string of JSON data using a variable
var data = JSON.parse(jsonData); // Create another variable and JSON.parse what we called our JSON data variable
console.log(data.name); // Using our data variable, call the JSON object key "name" which will output our value "Oblivion"
Step by step guide
- Create or require our string of JSON data using a variable. example: jsonData
Code:
var jsonData = '{"name": "Oblivion"}';
- Create another variable and JSON.parse our previous variable.
Code:
var data = JSON.parse(jsonData);
- Using our data variable, call the JSON object key "name" which will output our value "Oblivion"
Code:
//example:
console.log(data.name);