Gets all but the first element of array.
array
The array to query.
Returns the slice of array.
5.13.0
tail([1, 2, 3])// => [2, 3] Copy
tail([1, 2, 3])// => [2, 3]
Gets all but the first element of
array
.