<!doctype html>
<head>
<title>JS Date Example</title>
</head>
<body>
<script>
/* JS comes here */
let date1 = new Date('February 13, 1991 06:44:00');
let date2 = new Date('1991-02-13T06:44:00');
let date3 = new Date(1991, 02, 13); // the month is 0 indexed
let date4 = new Date(1991, 02, 13, 6, 44, 0);
document.write("Example 1: " + date1);
document.write("<br/>Example 2: " + date2);
document.write("<br/>Example 3: " + date3);
document.write("<br/>Example 4: " + date4);
</script>
</body>
</html>