Determines if a reference is an Object. Unlike typeof in JavaScript, nulls are not considered to be objects. Note that JavaScript arrays are objects.
Object
typeof
null
Reference to check.
True if value is an Object but not null.
value
Determines if a reference is an
Object
. Unliketypeof
in JavaScript,null
s are not considered to be objects. Note that JavaScript arrays are objects.