valueUp()
Increments the range value of a specified `Range` object by the range step or given increment
Range.prototype.valueUp()
Range.prototype.valueUp()
The valueUp()
method increments the range value of a specified Range
object by the range step or given stepIncrement
.
range.class.ts
Parameters
The optional stepIncrement
parameter of the number
type increments the range value
. If no parameter is passed, stepIncrement
defaults to 1
.
Return type
Returns
The return value is the Range
instance.
Example usage
Last updated