> Deserializing JSON in JavaScript is as simple as running the code:
>
> eval(jsonString);

While that's correct, you probably want to stick said deserialized
object somewhere:

eval('var json = ' + jsonString);
console.log(json);

Or some such.

--Erik

Reply via email to