drop

Array
since 0.5.0

Arguments

  • Array The array to query.
  • number The number of elements to drop.

Returns

Array the slice of `array`.

Creates a slice of array with n elements dropped from the beginning.

Example of Lodash _.drop

_.drop([1, 2, 3]);
// => [2, 3]

_.drop([1, 2, 3], 2);
// => [3]

_.drop([1, 2, 3], 5);
// => []

_.drop([1, 2, 3], 0);
// => [1, 2, 3]