Interval between numbers
Start. Defaults to 0
Optional
end: numberEnd (if undefined, range never ends)
Range loops from start indefinately. Default false
Optional
rounding: numberA rounding that matches the interval avoids floating-point math hikinks. Eg if the interval is 0.1, use a rounding of 10
Generates a range of numbers, with a given interval.
Example: For-loop
Example: If you want more control over when/where incrementing happens...
Note that computations are internally rounded to avoid floating point math issues. So if the
interval
is very small (eg thousandths), specify a higher rounding number.