Skip to content
Subhajit Sahu edited this page Feb 2, 2021 · 15 revisions

Discards first n values only. 🏃 📼 📦 🌔 📒

Alternatives: drop, dropRight, dropWhile, dropWhileRight.
Similar: take, drop.


array.drop(x, [n]);
// x: an array
// n: number of values (1)
const array = require("extra-array");

var x = [1, 2, 3, 4, 5];
array.drop(x, 2);
// [ 3, 4, 5 ]

array.drop(x, 3);
// [ 4, 5 ]


References

Clone this wiki locally