Function range

  • Array of numbers starting from start and progressing up to, but not including, stop.

    Returns

    An array starting from start, incrementing with a step, and going to a maximum of stop-1

    Parameters

    • start: number

      The lower boundary of the array (included)

    • stop: number

      The upper boundary of the array (excluded)

    • step: number = 1

    Returns number[]

Generated using TypeDoc