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
angular.isObject(value);
Reference to check.
True if value is an Object but not null.
value