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); }