I am receiving this JSON object:
response.myDates = [ "2017-11-19T00:00:00.000Z", "2017-12-08T00:00:00.000Z", "2017-12-25T00:00:00.000Z", "2017-12-31T00:00:00.000Z", "2018-01-01T00:00:00.000Z" ]
I would like to save all these dates (actually there are hundreds of them) in a Date array parsedDates
in Javascript.
Is there a simple way to do it without a while loop?