-
Notifications
You must be signed in to change notification settings - Fork 0
drop
Subhajit Sahu edited this page Jun 17, 2020
·
15 revisions
Removes first n entries. 🏃 [:vhs:] 📦 🌔 📒
entries.drop(x, [n]);
// x: entries
// n: number of entries (1)
const entries = require('extra-entries');
var x = [['a', 1], ['b', 2], ['c', 3], ['d', 4], ['e', 5]];
[...entries.drop(x, 2)];
// [ [ 'c', 3 ], [ 'd', 4 ], [ 'e', 5 ] ]
[...entries.drop(x, 3)];
// [ [ 'd', 4 ], [ 'e', 5 ] ]