Home >>JavaScript Date Object Methods >JavaScript setDate() Method
JavaScript setDate() method is used to set the day of the month to the given input date object, created using date() constructor.
Syntax:Date.setDate(day)
Parameter | Description |
---|---|
day | This is a required parameter. It defines an integer representing the day of a month. |
Method | Chrome | Edge | Firefox | Safari | Opera |
---|---|---|---|---|---|
setDate() | Yes | Yes | Yes | Yes | Yes |
<html> <body> <p>Click the button to see the Output.</p> <button onclick="myFunction()">Try it</button> <p id="demo"></p> <script> function myFunction() { var d = new Date(); d.setDate(14); document.getElementById("demo").innerHTML = d; } </script> </body> </html>
Click the button to see the Output.
<html> <body> <p>Click the button to see the Output.</p> <button onclick="myFunction1()">Try it</button> <p id="demo1"></p> <script> function myFunction1() { var d = new Date("March 08, 2020 04:15:00"); d.setDate(13); document.getElementById("demo1").innerHTML = d; } </script> </body> </html>
Click the button to see the Output.