Determines if a value is an object.
isObject(1); // falseisObject(new Date()) // true;isObject({}) // true; Copy
isObject(1); // falseisObject(new Date()) // true;isObject({}) // true;
The value to check.
True if the value is an object, false otherwise.
Determines if a value is an object.
Example