_.tail(array)
Gets all but the first element of array
.
Since
4.0.0
Arguments
-
array
(Array): The array to query.
Returns
(Array): Returns the slice of array
.
Example
_.tail([1, 2, 3]); // => [2, 3]
_.tail(array)
Gets all but the first element of array
.
4.0.0
array
(Array): The array to query.(Array): Returns the slice of array
.
_.tail([1, 2, 3]); // => [2, 3]
Please login to continue.