_.isObject

_.isObject(value)

Checks if value is the language type of Object. (e.g. arrays, functions, objects, regexes, new Number(0), and new String(''))

Since

0.1.0

Arguments

  1. value (*): The value to check.

Returns

(boolean): Returns true if value is an object, else false.

Example

1
2
3
4
5
6
7
8
9
10
11
_.isObject({});
// => true
  
_.isObject([1, 2, 3]);
// => true
  
_.isObject(_.noop);
// => true
  
_.isObject(null);
// => false
doc_Lodash
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.