var mystr = '{ "hello":"world" }' // NB: Has enclosing "" var myobj = JSON.parse(mystr); console.log(myobj); result: { hello: "world" }