docs/Script API/interfaces/Backend_Script_API._internal_.Object.html
interface Object {
constructor: Function;
hasOwnProperty(v: PropertyKey): boolean;
isPrototypeOf(v: Object): boolean;
propertyIsEnumerable(v: PropertyKey): boolean;
toLocaleString(): string;
toString(): string;
valueOf(): Object;
}
hasOwnPropertyisPrototypeOfpropertyIsEnumerabletoLocaleStringtoStringvalueOf
constructor: Function
The initial value of Object.prototype.constructor is the standard built-in Object constructor.
hasOwnProperty(v: PropertyKey): boolean
Determines whether an object has a property with the specified name.
A property name.
isPrototypeOf(v: Object): boolean
Determines whether an object exists in another object's prototype chain.
Another object whose prototype chain is to be checked.
propertyIsEnumerable(v: PropertyKey): boolean
Determines whether a specified property is enumerable.
A property name.
toLocaleString(): string
Returns a date converted to a string using the current locale.
toString(): string
Returns a string representation of an object.
valueOf(): Object
Returns the primitive value of the specified object.
Member Visibility
ThemeOSLightDark
Properties constructor Methods hasOwnPropertyisPrototypeOfpropertyIsEnumerabletoLocaleStringtoStringvalueOf