diff --git a/index.html b/index.html index c23d79a4e..5b12f4352 100644 --- a/index.html +++ b/index.html @@ -1463,12 +1463,10 @@

Array Functions


A function to create flexibly-numbered lists of integers, handy for each and map loops. start, if omitted, - defaults to 0; step defaults to 1. Returns a list + defaults to 0; step defaults to 1 if start + is before stop, otherwise -1. Returns a list of integers from start (inclusive) to stop (exclusive), - incremented (or decremented) by step. Note that ranges that - stop before they start are considered to be zero-length - instead of negative — if you'd like a negative range, use a negative - step. + incremented (or decremented) by step.

 _.range(10);