I know this question has been asked and answered many times, but I could not convert a given milliseconds to date and time.
I have the following code:
var date = '1475235770601';
var d = new Date(date);
var ds = d.toLocaleString();
alert(ds);
console.log(ds);
When I run this I see Invalid Date in console as well as in alert.
But when I paste the milliseconds here, it converts fine in the format in local date and time as Fri Sep 30 2016 17:12:50
.
Actually I want to convert in in the format 09/30/16 17:12:50
.