You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Returns a new array of numbers from `start` (inclusive) to `finish` (exclusive).
615
+
Returns a new inclusive array of numbers from `start` to `finish` (itreturnsanemptyarraywhen`start` > `finish`).
616
616
617
617
618
618
```ts
@@ -622,7 +622,7 @@ function range(start: number, finish: number): Array<number>
622
622
623
623
### rangeBy
624
624
625
-
Returns a new array of numbers from `start` (inclusive) to `finish` (exclusive).
625
+
Returns a new inclusive array of numbers from `start` to `finish` (itreturnsanemptyarraywhen`step`is 0 ornegative, italsoreturnsanemptyarraywhen`start` > `finish`).
%comment("Returns a new array of numbers from `start` (inclusive) to `finish` (exclusive).")
390
+
%comment(
391
+
"Returns a new inclusive array of numbers from `start` to `finish` (it returns an empty array when `step` is 0 or negative, it also returns an empty array when `start` > `finish`)."
/** Returns a new array of numbers from `start` (inclusive) to `finish` (exclusive). */
491
+
/** Returns a new inclusive array of numbers from `start` to `finish` (it returns an empty array when `step` is 0 or negative, it also returns an empty array when `start` > `finish`). */
0 commit comments