terbalik dari stringfy js

var str = '{"hello":"world"}';
var obj = JSON.parse(str); // this is how you parse a string into JSON
Anxious Alligator