_.unset

_.unset(object, path)

source npm package

Removes the property at path of object.

Note: This method mutates object.

Since

4.0.0

Arguments

  1. object (Object): The object to modify.
  2. path (Array|string): The path of the property to unset.

Returns

(boolean): Returns true if the property is deleted, else false.

Example

var object = { 'a': [{ 'b': { 'c': 7 } }] };
_.unset(object, 'a[0].b.c');
// => true
 
console.log(object);
// => { 'a': [{ 'b': {} }] };
 
_.unset(object, ['a', '0', 'b', 'c']);
// => true
 
console.log(object);
// => { 'a': [{ 'b': {} }] };