Skip to content
Subhajit Sahu edited this page Feb 3, 2021 · 17 revisions

Discard first n values only.

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


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

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

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


References

Clone this wiki locally