@laserware/arcade
    Preparing search index...

    Function insertAtIndex

    • Inserts the specified item into the specified array at the specified index.

      Type Parameters

      • T

      Parameters

      • array: T[]

        Existing array to add items to.

      • index: number

        Index at which to insert items.

      • item: T

        Item to insert in the array at the specified index.

      Returns T[]

      The updated array.

      RangeError if the specified index is out of bounds.

      const values = [1, 2, 3, 4, 5, 6];

      const updated = insertAtIndex(values, 0, 8);
      // [8, 1, 2, 4, 5, 6]
    • Inserts the specified items into the specified array at the specified index.

      Type Parameters

      • T

      Parameters

      • array: T[]

        Existing array to add items to.

      • index: number

        Index at which to insert items.

      • items: T[]

        Items to insert in the array at the specified index.

      Returns T[]

      The updated array.

      RangeError if the specified index is out of bounds.

      const values = [1, 2, 3, 4, 5, 6];

      const updated = insertAtIndex(values, 0, [8, 9, 10]);
      // [8, 9, 10, 1, 2, 4, 5, 6]