Lodash _.defaultsDeep() Method

Lodash _.defaultsDeep() method recursively assigns default properties. It is almost the same as the _.defaults() function. This method mutates the object.
Syntax:
_.defaultsDeep(object, [sources]);
Parameters:
- object: This parameter holds the destination object.
- sources: This parameter holds the source objects.
Return Value:
This method returns the object.
Example 1: In this example, we are using the -.defaultsDeep() method for setting the source’s value to the original object.
Javascript
// Requiring the lodash library const _ = require("lodash");// Given objectlet info = { Name: "zambiatek", password: "gfg@1234", username: "your_zambiatek"}// Use of _.defaultsDeep() methodconsole.log(_.defaultsDeep(info, _.defaults(info, { id: 'Id97' }))); |
Output:
{
Name: 'zambiatek',
password: 'gfg@1234',
username: 'your_zambiatek',
id: 'Id97'
}
Example 2: In this example, we are using the -.defaultsDeep() method for setting the source’s value to the original object.
Javascript
// Requiring the lodash library const _ = require("lodash");// Use of _.defaultsDeep() methodconsole.log(_.defaultsDeep( { 'x': { 'y': 20 } }, { 'x': { 'y': 10, 'z': 30 } })); |
Output:
{ 'x': { 'y': 20, 'z': 30 } }
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, zambiatek Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!



