Skip to content
Subhajit Sahu edited this page Jun 18, 2020 · 16 revisions

Deletes an entry. 🏃 📼 📦 🌔 📒

Similar: get, set, remove.

lists.remove(x, k);
// x: lists
// k: key
const lists = require('extra-lists');

var x = [[], []];
var x = [['a', 2], ['b', 4], ['c', 6], ['d', 8]];
[...lists.remove(x, 'b')];
// [ [ 'a', 2 ], [ 'c', 6 ], [ 'd', 8 ] ]

[...lists.remove(x, 'd')];
// [ [ 'a', 2 ], [ 'b', 4 ], [ 'c', 6 ] ]

references

Clone this wiki locally