If both the step attribute and stepUp(step) method are defined in HTML for an <input type="number">:
The step attribute sets the default increment/decrement step size.
<input type="number" id="numInput" step="5">
The stepUp(step) method overrides the default step when called.
document.getElementById("numInput").stepUp(2); // Increments by 2 instead of 5