Creates an array of numbers (positive and/or negative) progressing from
start up to, but not including, end. A step of -1 is used if a negative
start is specified without an end or step. If end is not specified,
it's set to start, and start is then set to 0.
Note: JavaScript follows the IEEE-754 standard for resolving
floating-point values which can produce unexpected results.
Creates an array of numbers (positive and/or negative) progressing from
startup to, but not including,end. A step of-1is used if a negativestartis specified without anendorstep. Ifendis not specified, it's set tostart, andstartis then set to0.Note: JavaScript follows the IEEE-754 standard for resolving floating-point values which can produce unexpected results.
Since
0.1.0
See
inRange, rangeRight
Example