It will return all but the first element of the value.
value
1.0.0
tail([0, 1, 2, 3, 4, 5]);// => [1, 2, 3, 4, 5] Copy
tail([0, 1, 2, 3, 4, 5]);// => [1, 2, 3, 4, 5]
tail("012345");// => "12345" Copy
tail("012345");// => "12345"
It will return all but the first element of the
value
.