It will determine whether the provided value is an Object or not.
value
1.0.0
isObject({});// => true Copy
isObject({});// => true
isObject([1, 2, 3]);// => true Copy
isObject([1, 2, 3]);// => true
isObject(() => 0);// => true Copy
isObject(() => 0);// => true
isObject(null);// => false Copy
isObject(null);// => false
It will determine whether the provided
value
is an Object or not.