Documentation
    Preparing search index...

    Function removeRange

    • Removes an element by index from an array.

      Type Parameters

      • T

        type of the array element. The type parameter is intentionally declared as such to avoid handling tuples. While it is possible to remove item from tuple, it will impact typing soundness.

      Parameters

      • array: T[]

        array to remove the element from.

      • fromIndex: number

        start index of the array elements to be removed.

      • count: number

        count of the array elements to be removed.

      Returns void