tail

Array
since 4.0.0

Arguments

  • Array The array to query.

Returns

Array the slice of `array`.

Gets all but the first element of array.

Example of Lodash _.tail

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