JSON.stringify reversal?
javascript, json
Solution
`JSON.parse` lets you do that.
You can see plenty of examples everywhere on the Intarwebs.
Even jQuery has a shim for this method (not supported in IE6, maybe 7): jQuery.parseJSON. That is, if you use jQuery.
Problem
i have some arrays and js objects put into a string using `JSON.stringify` how can i decode that string again into arrays and objects ? Thank you .