Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<h1>JavaScript Dates</h1>
<h2>The new Date() Method</h2>
<p>Create a date using ISO notation:</p>
<p id="demo"></p>
<script>
const time = new Date("2015-03-25");
document.getElementById("demo").innerHTML = time;
</script>
</body>
</html>