HTML | DOM Input Number value Property Last Updated : 25 Aug, 2022 Comments Improve Suggest changes Like Article Like Report The DOM Input Number value Property in HTML DOM is used to set or return the value of a value attribute of the number field. The value attribute specifies the initial value of the input number Field. It contains the default value or the user types. Syntax: It returns the value property.numberObject.valueIt is used to Set the value property.numberObject.value = number Property Value: It contains single value number which defines the value of the input number field. Return Value: It returns the numeric value which represent the value of the number Field. Example-1: This example illustrates how to return the property. HTML <!DOCTYPE html> <html> <body style="text-align:center;"> <h1 style="color:green;"> GeeksForGeeks </h1> <h2>DOM Input Number value Property</h2> <input type="number" id="myNumber" value="10"> <p>Click the button to get the number of the number field.</p> <button onclick="myFunction()"> Click Here! </button> <p id="demo"></p> <script> function myFunction() { // Accessing input value var x = document.getElementById("myNumber").value; document.getElementById("demo").innerHTML = x; } </script> </body> </html> Output: Before Clicking On Button: After Clicking On Button: Example-2: This Example illustrates how to set the Property. HTML <!DOCTYPE html> <html> <body style="text-align:center;"> <h1 style="color:green;"> GeeksForGeeks </h1> <h2>DOM Input Number value Property</h2> <input type="number" id="myNumber" value="10"> <p>Click the button to change the number of the number field.</p> <button onclick="myFunction()"> Click Here! </button> <p id="demo"></p> <script> function myFunction() { // Accessing input value var x = document.getElementById("myNumber").valued = "20"; document.getElementById("demo").innerHTML = "The value of number was changed to " + x; } </script> </body> </html> Output: Before Clicking On Button: After Clicking On Button: Supported Browsers: The browser supported by DOM input number value Property are listed below: Google ChromeEdge 12 and aboveFirefoxOperaSafari Comment More infoAdvertise with us Next Article HTML | DOM Input Number value Property M manaschhabra2 Follow Improve Article Tags : Misc Web Technologies HTML HTML-DOM Practice Tags : Misc Similar Reads HTML | DOM Input Number type Property The DOM Input Number type Property in HTML DOM is used to return the type of form element of the number field. It always returns the "number" for an Input number field. Syntax: numberObject.type Return Values: It returns a string value which represents the type of form element of the Number field Th 1 min read HTML | DOM Input Number step Property The DOM Input Number step Property is used to set or return the value of the step attribute of a number field. The step attribute in HTML is used to set the discrete step size of the element. The default stepping value for number inputs is 1. The step attribute could be used with min and max attribu 2 min read HTML DOM Input Number readOnly Property The Input Number readOnly Property is used to set or return whether a number Field should be read-only or not. It means that a user can not modify or change the content already present in a particular Element. However, a user can tab to it, highlight it, and copy the text from it. Whereas JavaScript 2 min read HTML | DOM Input Number max Property The DOM Input Number max Property in HTML DOM is used to set or return the value of the max attribute of a number field. The max attribute defines the maximum value for a number field. Syntax: It returns the max property. numberObject.maxIt is use to set the max property. numberObject.max = number P 2 min read HTML | DOM Input Number min Property The DOM Input Number min Property is used to set or return the value of the min attribute of a number field. The min attribute defines the minimum value for a input number field. Syntax: It returns the min property.numberObject.minIt is use to set the min property.numberObject.min = number Property 2 min read Like