First value in the sequence (inclusive).
Last value in the sequence (inclusive).
Absolute increment between values; sign is ignored. Defaults to 1.
An ascending or descending array from start to end, rounded to the precision implied by step.
sequence(1, 5); // [1, 2, 3, 4, 5]
sequence(5, 1); // [5, 4, 3, 2, 1]
sequence(0, 1, 0.33); // [0, 0.33, 0.66, 0.99]
When step is 0, or fails the isFiniteNumber guard.
Builds an inclusive numeric array from
starttoend.Accepts negative
stepvalues (the absolute step size is used). Decimal precision is derived fromstep.