You can convert this to a readable date using the method new Date()
if you have a specific date stamp, you can get the appropriate date format using the following method
var date = new Date(timeStamp);
in your case
var date = new Date(1447804800000);
it will return
Wed Nov 18 2015 05:30:00 GMT+0530 (India Standard Time)
source
share