We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Gets values except first.
array.tail(x); // x: an array
const array = require('extra-array'); array.tail([1, 2, 3]); // [2, 3] array.tail([1]); // []