jaaJSU - v2.0.0 / $object / ObjectImutable
$object.ObjectImutable
- getter
Proxy.key_name
Mixed: returns key_name if defined - getter
Proxy.set(key_name, value)
Function: - definekey_name
in object if isn't already defined (returns True, else False). - getter
Proxy.keys
Number: Wrapper aroundObject.keys(*)
-
Object
↳
ObjectImutable
• constructor: Function
The initial value of Object.prototype.constructor is the standard built-in Object constructor.
Object.constructor
▸ hasOwnProperty(v
): boolean
Determines whether an object has a property with the specified name.
Name | Type | Description |
---|---|---|
v |
PropertyKey |
A property name. |
boolean
Object.hasOwnProperty
▸ isPrototypeOf(v
): boolean
Determines whether an object exists in another object's prototype chain.
Name | Type | Description |
---|---|---|
v |
Object |
Another object whose prototype chain is to be checked. |
boolean
Object.isPrototypeOf
▸ propertyIsEnumerable(v
): boolean
Determines whether a specified property is enumerable.
Name | Type | Description |
---|---|---|
v |
PropertyKey |
A property name. |
boolean
Object.propertyIsEnumerable
▸ toLocaleString(): string
Returns a date converted to a string using the current locale.
string
Object.toLocaleString
▸ toString(): string
Returns a string representation of an object.
string
Object.toString
▸ valueOf(): Object
Returns the primitive value of the specified object.
Object
Object.valueOf