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

Get Current Date in JavaScript



To get the current date in JavaScript, use the getDate() method.

Example

You can try to run the following code get the date:

<!DOCTYPE html>
<html>
   <body>
      <p>Today's Date</p>
      <button onclick="myFunction()">Get Date</button>
      <p id="test"></p>
       <script>
          function myFunction() {
             var date = new Date();
             var n = date.getDate();
             document.getElementById("test").innerHTML = n;
          }
       </script>
   </body>
</html>
Updated on: 2020-01-02T08:39:53+05:30

1K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements