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
- has
Own (v): booleanProperty Determines whether an object has a property with the specified name.
Parameters
- v: PropertyKey
A property name.
Returns boolean
- v: PropertyKey
isPrototypeOf
- is
Prototype (v): booleanOf Determines whether an object exists in another object's prototype chain.
Parameters
- v: Object
Another object whose prototype chain is to be checked.
Returns boolean
- v: Object
propertyIsEnumerable
- property
Is (v): booleanEnumerable Determines whether a specified property is enumerable.
Parameters
- v: PropertyKey
A property name.
Returns boolean
- v: PropertyKey
The initial value of Object.prototype.constructor is the standard built-in Object constructor.