In JavaScript, the JSON object is used to parse a JSON string. This method is only available in modern browsers (IE8+, Firefox 3.5+, etc).
When a valid JSON string is parsed, the result is a JavaScript object, array or other value.
JSON.parse('"bar of foo"')
// "bar of foo" (t...