We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Deletes an entry. 🏃 [:vhs:] 📦 🌔 📒
Similar: get, set, remove.
lists.remove(x, k); // x: lists // k: key
const lists = require('extra-lists'); var x = [['a', 'b', 'c', 'd'], [2, 4, 6, 8]]; lists.remove(x, 'b'); // [ [ 'a', 'c', 'd' ], [ 2, 6, 8 ] ] lists.remove(x, 'd'); // [ [ 'a', 'b', 'c' ], [ 2, 4, 6 ] ]