Skip to content
Subhajit Sahu edited this page Nov 20, 2022 · 17 revisions

Get values except first.

Similar: head, tail, init, last.


function tail(x)
// x: an array
const array = require('extra-array');

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

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


References

Clone this wiki locally