Here is the String example I am trying to convert to Date `
let sdate = "2008-08-17T07:24:03.000Z";
let xdate = Date(sdate);
console.log(xdate);
Am I using Date wrong? How should I convert dateformat of any String to Date? Why does Date return today's date instead of given date?