Edit This Code:
<!DOCTYPE html>
<html>
<body>

<p>The setFullYear() method sets a date object to a special date.</p>

<p>Remember that JavaScript counts months from 0 to 11. Month 10 is November.</p>

<p id="demo"></p>

<script>
var d = new Date();
d.setFullYear(2020, 0, 14);
document.getElementById("demo").innerHTML = d;
</script>

</body>
</html>


Result:
Try it Yourself - © w3schools.com
Privacy Policy