HTML | DOM Input Date defaultValue Property Last Updated : 18 May, 2022 Summarize Comments Improve Suggest changes Share Like Article Like Report The Input Date defaultValue Property in HTML DOM is used to set or return the default value of a date field. This property is used to reflect the HTML value attribute. The main difference between the default value and value is that the default value indicate the default value and the value contains the current value after making some changes. This property is useful to find whether the Date field has been changed or not. Syntax: It is used to return the defaultValue property. dateObject.defaultValueIt is used to set the defaultValue property. dateObject.defaultValue = value Property Values: It contains single property value which defines the default value for Input date field.Return Value: It returns a string value which represent the default value of the input date field.Example 1: This example illustrates how to return Input Date defaultValue property. html <!DOCTYPE html> <html> <head> <title> HTML DOM Input Date defaultValue Property </title> <style> h1 { color: green; } h2 { font-family: Impact; } body { text-align: center; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>Input Date default Value Property</h2> <br> <input type="date" id="test_Date" value = "2014-02-09" autofocus> <button ondblclick="My_Date()">Check</button> <p id="test"></p> <script> function My_Date() { var d = document.getElementById("test_Date").defaultValue; document.getElementById("test").innerHTML = d; } </script> </body> </html> Output: Before Clicking On Button: After Clicking On Button: Example 2: This example set the Input Date defaultValue property. html <!DOCTYPE html> <html> <head> <title> HTML DOM Input Date defaultValue Property </title> <style> h1 { color: green; } h2 { font-family: Impact; } body { text-align: center; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>Input Date default Value Property</h2> <br> <input type="date" id="test_Date" value = "2014-02-09" autofocus> <button ondblclick="My_Date()">Check</button> <p id="test"></p> <script> function My_Date() { var d = document.getElementById( "test_Date").defaultValue = " 2019-05-09"; document.getElementById("test").innerHTML = " The defaultValue was changed to " + d; } </script> </body> </html> Output: Before Clicking On Button: After Clicking On Button: Supported Browsers: The browsers supported by HTML DOM Input Date defaultValue Property are listed below: Google ChromeInternet ExplorerFirefoxSafariOpera Comment More infoAdvertise with us Next Article HTML | DOM Input Datetime defaultValue Property M manaschhabra2 Follow Improve Article Tags : Web Technologies HTML HTML-DOM HTML-Attributes Similar Reads HTML | DOM Input Datetime defaultValue Property The Input Datetime defaultValue property in HTML DOM is used to set or return the default value of a datetime field. This property is used to reflect the HTML value attribute. The main difference between the default value and value is that the default value indicates the default value of the propert 2 min read HTML DOM Input DatetimeLocal defaultValue Property The Input DatetimeLocal defaultValue property is used to set or return the default value of a local DateTime field. This property is used to reflect the HTML value attribute. The main difference between the default value and value is that the default value indicates the default value and the value c 2 min read HTML | DOM Input URL defaultValue Property The DOM Input URL defaultValue Property in HTML DOM is used to set or return the default value of the URL Field. This property is used to reflect the HTML value attribute. The main difference between the default value and value is that the default value indicates the default value and the value cont 2 min read HTML DOM Input Tel defaultValue Property The Input Tel defaultValue property in HTML DOM is used to set or return the default value of the input tel field. This property is used to reflect the HTML value attribute. The main difference between the default value and value is that the default value indicates the default value and the value co 2 min read HTML | DOM Input Week defaultValue Property The DOM Input Week defaultValue property in HTML DOM is used to set or return the default value of a week field. It is the value specified in the value attribute. Syntax: It returns the defaultValue property.weekObject.defaultValueIt is used to set the defaultValue property.weekObject.defaultValue = 2 min read HTML | DOM Input Time defaultValue Property The DOM Input Time defaultValue Property in HTML DOM is used to set or return the default value of the Time Field. This property is used to reflect the HTML value attribute. The main difference between the default value and value is that the default value indicates the default value and the value co 2 min read Like