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>