I am working on an application that has to run on IE9 and below as well. I need a JSON.parse and stringify equivalent for this. I know that i can import json.js, but is there an inbuilt method in the browser to handle JSON strings.
According to MDN, JSON.parse()
and JSON.stringify()
are supported starting with IE8 in some modes. If you need support in earlier versions of IE or in other modes, you will have to add your own implementations to your project (such as json.js). Older IE doesn't have some other way to access this functionality.
Here's further discussion of the polyfill: JSON polyfill: JSON 2 or JSON 3?