Skip to content
Malexion edited this page Oct 31, 2016 · 1 revision

__.remove(obj, item)

  • obj Item to remove from, Object or Array.
  • item Item to remove from the target obj.

Examples

var newObj = __.remove({ key: 2, value: 3 }, 3);

console.log(newObj);
Clone this wiki locally