Inserts an item at the given index into the array. Existing items at and after the index will be pushed back. No items will be deleted. Original array is mutated.
The index of which to insert the item.
The item to insert.
Inserts an item at the given index into the array. Existing items at and after the index will be pushed back. No items will be deleted. Original array is mutated. *
The index of which to start the insertion.
The items to insert.
Removes all items from the array. Original array is mutated.