iterate(start?, end?)

Iterates from start to end within a collection.

Returns an iterator that will start at the given index and stop when it reaches the end. The iterator will not produce the value at the end index.

The optional end argument defaults to the length of the collection.

The optional start argument defaults to zero, the beginning of the collection.

Although many collections implement iterate, not all support the start and end indexes.

On collections

Usage

  • iterate()
  • iterate(start)
  • iterate(start, end)

Related

  • iterate()

    Iterates every value in this collection.