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