To listen for onchange event for input type="number" with JavaScript, we set the onchange
attribute to the change listener function.
For instance, we write
<input type="number" onchange="onChangeFunction(this.value)" />
to add a number input with the onchange
attribute set to JavaScript code that calls the onChangeFunction
with the value of the input.