Skip to content
Advertisement

Reverse of JSON.stringify?

I’m stringyfing an object like {'foo': 'bar'}

How can I turn the string back to an object?

Advertisement

Answer

You need to JSON.parse() your valid JSON string.

var str = '{"hello":"world"}';
try {
  var obj = JSON.parse(str); // this is how you parse a string into JSON 
  document.body.innerHTML += obj.hello;
} catch (ex) {
  console.error(ex);
}
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement