Lodash教程

Lodash unset method

语法

_.unset(object, path)
Removes the property at path of object.

参数

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

输出

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

实例

var _ = require('lodash');
var object = { 'a': [{ 'b': { 'c': 3 } }] };
_.unset(object, 'a[0].b.c');
console.log(object);
Save the above program in tester.js. Run the following command to execute this program.

Command

\>node tester.js

输出

{ a: [ { b: {} } ] }
昵称: 邮箱:
Copyright © 2022 立地货 All Rights Reserved.
备案号:京ICP备14037608号-4