docs/reference/array/drop.md
Returns a new array with the specified number of elements removed from the beginning.
const dropped = drop(arr, itemsCount);
drop(arr, itemsCount)Use drop when you want to remove some elements from the beginning of an array. It removes the specified number of elements from the start and returns a new array with the remaining elements.
import { drop } from 'es-toolkit/array';
// Remove the first 2 elements from the array.
drop([1, 2, 3, 4, 5], 2);
// Returns: [3, 4, 5]
// If the count is greater than the array length, it returns an empty array.
drop([1, 2, 3], 5);
// Returns: []
If you pass a negative number or 0, it returns a new array with the same elements as the original.
import { drop } from 'es-toolkit/array';
drop([1, 2, 3], 0); // [1, 2, 3]
drop([1, 2, 3], -2); // [1, 2, 3]
arr (T[]): The array to remove elements from.itemsCount (number): The number of elements to remove from the beginning of the array.(T[]): A new array with the specified number of elements removed from the beginning.