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: 16-Jun-2020

945 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements