Checks that the value is of type object and is not null.
isObject(1); // Error: isObjectisObject(null); // Error: isObjectisObject({}); // passes Copy
isObject(1); // Error: isObjectisObject(null); // Error: isObjectisObject({}); // passes
Checks that the value is of type object and is not null.
Example