Returns all but the first item in an array, or the fallback list is null or undefined.
list
tail([])([3, 6, 9])// => [6, 9]tail([])(undefined)// => [] Copy
tail([])([3, 6, 9])// => [6, 9]tail([])(undefined)// => []
Generated using TypeDoc
Returns all but the first item in an array, or the fallback
list
is null or undefined.