Lodash - unset method



Syntax

_.unset(object, path)

Removes the property at path of object.

Arguments

  • object (Object) − The object to modify.

  • path (Array|string) − The path of the property to unset.

Output

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

Example

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

Output

{ a: [ { b: {} } ] }
lodash_object.htm
Advertisements