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