I have dates stored using Parse.com backend. I retrieve them using JSON.stringify. Everything is working fantastic except for dates. I need to convert them to JavaScript dates. I understand that Parse.com stores dates in ISO 8601 format preceded by characters as in this example:
{"__type":"Date","iso":"2013-05-07T00:00:00.000Z"}
Could sure use some help on trying to convert above to standard JavaScript date. Thanks!