-
Notifications
You must be signed in to change notification settings - Fork 5
rejectAt
Subhajit Sahu edited this page Feb 2, 2021
·
13 revisions
Discards values at given indices. 🏃 📼 📦 🌔 📒
Alternatives: reject, reject$, rejectAt.
Similar: map, filter, reject, reduce, accumulate.
array.rejectAt(x, is);
// x: an array
// is: indices
const array = require("extra-array");
var x = [2, 4, 6, 8];
array.rejectAt(x, [1, 2]);
// [ 2, 8 ]
array.rejectAt(x, [1, 3]);
// [ 2, 6 ]