Returns true iff value is an object.
true
value
An object is considered to be any value where typeof value === "object", except for null (even though typeof null === "object" for historical reasons).
typeof value === "object"
null
typeof null === "object"
Returns
true
iffvalue
is an object.An object is considered to be any value where
typeof value === "object"
, except fornull
(even thoughtypeof null === "object"
for historical reasons).