Open In App

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

The below program illustrates the number type property in HTML DOM:
Example: This example returns the type of form element of the number field. 






<!DOCTYPE html>
<html>
<body style="text-align:center;">
    <h1 style="color:green;">
        GeeksForGeeks
    </h1>
    <h2>DOM Input Number type Property</h2>
    <input type="number" id="myNumber" value="10">
    <br><br>
    <button onclick="myFunction()">
        Click Here!
    </button>
    <p id="demo" style="font-size:23px;color:green;"></p>
 
 
    <script>
        function myFunction() {
 
            // Return Input Number type Property
            var x =
                document.getElementById("myNumber").type;
            document.getElementById("demo").innerHTML = x;
        }
    </script>
</body>
</html>

Output:
Before Clicking On Button: 

After Clicking On Button: 

Supported Browsers: The browser supported by DOM input number type Property are listed below: 

Article Tags :