Lodash _.isPlainObject() Method

Lodash is a JavaScript library that works on the top of underscore.js. Lodash helps in working with arrays, collection, strings, lang, function, objects, numbers etc.
The _.isPlainObject() method checks if value is a plain object which means an object created by the Object constructor or one with a [[Prototype]] of null.
Syntax:
_.isPlainObject(value)
Parameters: This method accepts single parameter as mentioned above and described below:
- value: It is the function that is used to check the value.
Return Value: This method returns true if value is a plain object else false.
Example 1: Here, const _ = require(‘lodash’) is used to import the lodash library in the file.
| // Requiring the lodash library  const _ = require("lodash");        Â// Original array  varobject = _.isPlainObject(Object.create(null));  Â// Using the _.isPlainObject() method let plain_data = ( object);  Â// Printing the output  console.log(plain_data);  | 
Output:
true
Example 2:
| // Requiring the lodash library  const _ = require("lodash");        Â// Original array  varobject = _.isPlainObject([1, 2, 3]);  Â// Using the _.isPlainObject() method let plain_data = ( object);  Â// Printing the output  console.log(plain_data);  | 
Output:
false
Example 3:
| // Requiring the lodash library  const _ = require("lodash");        Â// Original array  varobject = _.isPlainObject({ 'x': 0, 'y': 0 });  Â// Using the _.isPlainObject() method let plain_data = ( object);  Â// Printing the output  console.log(plain_data);  | 
Output:
true
Note: This code will not work in normal JavaScript because it requires the library lodash to be installed.
 
				 
					


