• slice slice_length number of elements, then jump forward skip_length number of elements, and repeat
    optionally provide a start index to begin at, and an end index to stop at.
    if you want to skip first and slice second, you can set start = skip_length to get the desired equivalent result

    Type Parameters

    Parameters

    • arr: A
    • slice_length: number
    • skip_length: number = 0
    • Optional start: number
    • Optional end: number

    Returns A[]

Generated using TypeDoc