-
Notifications
You must be signed in to change notification settings - Fork 3
drop
Subhajit Sahu edited this page Dec 8, 2022
·
12 revisions
Remove first n entries (default order).
function drop(x, n)
// x: an object
// n: number of entries [1]
const object = require('extra-object');
var x = {a: 1, b: 2, c: 3, d: 4, e: 5};
object.drop(x, 2);
// → { c: 3, d: 4, e: 5 }
object.drop(x, 3);
// → { d: 4, e: 5 }