Skip to content
Subhajit Sahu edited this page Jun 20, 2020 · 17 revisions

Discards first n values only. 🏃 📼 📦 🌔 📒

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

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

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

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

references

Clone this wiki locally