Skip to content

Latest commit

 

History

History
157 lines (86 loc) · 2.62 KB

object.ObjectImutable.md

File metadata and controls

157 lines (86 loc) · 2.62 KB

jaaJSU - v2.0.0 / $object / ObjectImutable

Interface: ObjectImutable

$object.ObjectImutable

  • getter Proxy.key_name Mixed: returns key_name if defined
  • getter Proxy.set(key_name, value) Function:   - define key_name in object if isn't already defined (returns True, else False).
  • getter Proxy.keys Number: Wrapper around Object.keys(*)

Hierarchy

  • Object

    ObjectImutable

Table of contents

Properties

Methods

Properties

constructor

constructor: Function

The initial value of Object.prototype.constructor is the standard built-in Object constructor.

Inherited from

Object.constructor

Methods

hasOwnProperty

hasOwnProperty(v): boolean

Determines whether an object has a property with the specified name.

Parameters

Name Type Description
v PropertyKey A property name.

Returns

boolean

Inherited from

Object.hasOwnProperty


isPrototypeOf

isPrototypeOf(v): boolean

Determines whether an object exists in another object's prototype chain.

Parameters

Name Type Description
v Object Another object whose prototype chain is to be checked.

Returns

boolean

Inherited from

Object.isPrototypeOf


propertyIsEnumerable

propertyIsEnumerable(v): boolean

Determines whether a specified property is enumerable.

Parameters

Name Type Description
v PropertyKey A property name.

Returns

boolean

Inherited from

Object.propertyIsEnumerable


toLocaleString

toLocaleString(): string

Returns a date converted to a string using the current locale.

Returns

string

Inherited from

Object.toLocaleString


toString

toString(): string

Returns a string representation of an object.

Returns

string

Inherited from

Object.toString


valueOf

valueOf(): Object

Returns the primitive value of the specified object.

Returns

Object

Inherited from

Object.valueOf