dropRight

Array
since 3.0.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 end.

Example of Lodash _.dropRight

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

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

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

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