Skip to content

Remove At

Malexion edited this page Oct 31, 2016 · 1 revision

__.removeAt(obj, key)

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

Examples

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

console.log(newObj);