const dt = new Date('November 1, 2019 10:33:01');
document.write(dt + "<br /><br />");
date = new Date()
document.write(date.toString() + "<br />");
document.write(date.toTimeString() + "<br />");
document.write(date.toDateString() + "<br />");
document.write(date.toUTCString() + "<br />");
document.write(date.toISOString() + "<br />");
document.write(date.toLocaleString() + "<br />");
document.write(date.toLocaleTimeString() + "<br />");
/*
run:
Fri Nov 01 2019 10:33:01 GMT+0200 (Israel Standard Time)
Mon Nov 04 2019 11:34:13 GMT+0200 (Israel Standard Time)
11:34:13 GMT+0200 (Israel Standard Time)
Mon Nov 04 2019
Mon, 04 Nov 2019 09:34:13 GMT
2019-11-04T09:34:13.118Z
04/11/2019, 11:34:13
11:34:13
*/