Gets values except first.
[:package:](https://www.npmjs.com/package/@extra-array/tail)
[:smiley_cat:](https://github.com/orgs/nodef/packages?repo_name=extra-array)
[:running:](https://npm.runkit.com/@extra-array/tail)
[:vhs:](https://asciinema.org/a/332144)
[:moon:](https://www.npmjs.com/package/@extra-array/tail.min)
[:scroll:](https://unpkg.com/@extra-array/tail/)
[:newspaper:](https://nodef.github.io/extra-array/)
[:blue_book:](https://github.com/nodef/extra-array/wiki/)

> Similar: [head], [tail], [init], [last].

> This is part of package [extra-array].

[extra-array]: https://www.npmjs.com/package/extra-array

<br>

```javascript
array.tail(x);
// x: an array
```

```javascript
const array = require("extra-array");

array.tail([1, 2, 3]);
// [2, 3]

array.tail([1]);
// []
```

<br>
<br>


## References

- [Data.List.tail: Haskell](https://hackage.haskell.org/package/base-4.12.0.0/docs/Data-List.html#v:tail)
- [_.tail: lodash](https://lodash.com/docs/4.17.15#tail)

[head]: https://github.com/nodef/extra-array/wiki/head
[tail]: https://github.com/nodef/extra-array/wiki/tail
[init]: https://github.com/nodef/extra-array/wiki/init
[last]: https://github.com/nodef/extra-array/wiki/last
