getRangeOfStep()
Returns a range of numbers by the specified step from the minimum to the given `step` of a specified `Range` object
Range.prototype.getRangeOfStep()
Range.prototype.getRangeOfStep()
The getRangeOfStep()
method returns a range of numbers by the specified step
from the minimum to the given step
of a specified Range
object.
range.class.ts
Parameters
Step of number
type is the maximum range of the returned array
.
The value must be less or equal to the number of range steps
.
Return type
Returns
The return value is a range of numbers of a read-only Array
from minimum to step of the given step
if the given step
is within a range, otherwise an empty Array
.
Example usage
Last updated