_.unset(object, path)

sourcenpm package

Removes the property at path of object.Note: This method mutates object.

Since

4.0.0

Arguments

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

Returns

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

Example

  1. 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': {} }] };