Thanks to visit codestin.com
Credit goes to www.tutorialspoint.com

How to print current year in JavaScript?



To get current year in JavaScript, use the getFullYear() method.

Example

You can try to run the following code to print current year −

Live Demo

<!DOCTYPE html>
<html>
   <body>
      <p>Click below to get the current year:</p>
      <button onclick="display()">Display Year</button>
      <p id="test"></p>
      <script>
         function display() {
            var date = new Date();
            var res = date.getFullYear();
            document.getElementById("test").innerHTML = res;
         }
      </script>
   </body>
</html>
Updated on: 2020-06-16T13:27:38+05:30

1K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements