Create an array of integers in the specified range
the range as an array of numbers
range(1, 3) === [1, 2, 3]
range(3, 8) === [3, 4, 5, 6, 7, 8]
range(5, 1, -1) === [5, 4, 3, 2, 1]
start of range (inclusive)
end of range (inclusive)
the jump between successive elements (defaults to 1)
Generated using TypeDoc
Create an array of integers in the specified range
Returns
the range as an array of numbers
Example
Example
Example