• Hello Guest! Welcome to ConsoleCrunch, to help support our site check out the premium upgrades HERE! to get exclusive access to our hidden content.
  • Unable to load portions of the website...
    If you use an ad blocker addon, you should disable it because it interferes with several elements of the site and blocks more than just adverts.
  • Read Rules Before Posting Post Virus Scans with every program.

[JS] Using JSON.parse()

Oblivion

Member
CC Dev Team
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
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);
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • @ QM|T_JinX:
    yea i saw somehting like that
  • @ QM|T_JinX:
    haha i was talking dutch on this site no one even understands hahah
  • @ lurch6661:
    lol
  • @ QM|T_JinX:
    bro dont put my last name on here pls
  • @ lurch6661:
    my bad
  • @ QM|T_JinX:
    no worries
  • @ lurch6661:
    jinx vs paul
  • @ QM|T_JinX:
    hahaha
  • @ lurch6661:
    you would destroy him
  • @ QM|T_JinX:
    well i like to beleave so hahaha
  • @ lurch6661:
    you think you can make his weight class
  • @ QM|T_JinX:
    hahah not sure bro he a big guy
  • @ QM|T_JinX:
    you can tho
  • @ lurch6661:
    lol
  • @ QM|T_JinX:
    is the fight on the same date
  • @ lurch6661:
    in december i believe
  • @ QM|T_JinX:
    o ok
  • @ lurch6661:
    hi younis
  • @ lurch6661:
    how are you
  • @ lurch6661:
    lol
  • Chat Bot:
    QM|T_JinX has joined the room.
      @ QM|T_JinX: :weed:
      Back
      Top