_.unset(object, path)
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
var object = { 'a': [{ 'b': { 'c': 7 } }] };_.unset(object, 'a[0].b.c');// => trueconsole.log(object);// => { 'a': [{ 'b': {} }] };_.unset(object, ['a', '0', 'b', 'c']);// => trueconsole.log(object);// => { 'a': [{ 'b': {} }] };
当前内容版权归 lodash.com 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 lodash.com .