Interface Object
interface Object {
constructor: Function;
hasOwnProperty(v: PropertyKey): boolean;
isPrototypeOf(v: Object): boolean;
propertyIsEnumerable(v: PropertyKey): boolean;
toLocaleString(): string;
toString(): string;
valueOf(): Object;
}
constructor: Function;
hasOwnProperty(v: PropertyKey): boolean;
isPrototypeOf(v: Object): boolean;
propertyIsEnumerable(v: PropertyKey): boolean;
toLocaleString(): string;
toString(): string;
valueOf(): Object;
}
 Index
Properties
Methods
 Methods
hasOwnProperty  
- hasOwnProperty(v: PropertyKey): boolean
- Determines whether an object has a property with the specified name. - Parameters- v: PropertyKeyA property name. 
 - Returns boolean
- v: PropertyKey
isPrototypeOf  
propertyIsEnumerable  
- propertyIsEnumerable(v: PropertyKey): boolean
- Determines whether a specified property is enumerable. - Parameters- v: PropertyKeyA property name. 
 - Returns boolean
- v: PropertyKey
The initial value of Object.prototype.constructor is the standard built-in Object constructor.