unset
Object
since 4.0.0
Arguments
- Object The object to modify.
- Array|string The path of the property to unset.
Returns
boolean `true` if the property is deleted, else `false`.
Removes the property at path
of object
.
Note: This method mutates object
.
Example of Lodash _.unset
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': {} }] };