Method | Description | |
---|---|---|
Object ( ) : System |
Creates an Object object and stores a reference to the object's constructor method in the object's constructor property.
|
|
hasOwnProperty ( String name ) : Boolean |
Indicates whether an object has a specified property defined.
|
|
isPrototypeOf ( Object theClass ) : Boolean |
Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.
|
|
propertyIsEnumerable ( String name ) : Boolean |
Indicates whether the specified property exists and is enumerable.
|
|
toLocaleString ( ) : String |
Returns the string representation of this object, formatted according to locale-specific conventions.
|
|
toString ( ) : String |
Returns the string representation of the specified object.
|
|
valueOf ( ) : Object |
Returns the primitive value of the specified object.
|
Method | Description | |
---|---|---|
Object ( bool getConstructor, bool getType ) : System |
public hasOwnProperty ( String name ) : Boolean | ||
name | String | The property of the object. |
return | Boolean |
public isPrototypeOf ( Object theClass ) : Boolean | ||
theClass | Object | The class to which the specified object may refer. |
return | Boolean |
public propertyIsEnumerable ( String name ) : Boolean | ||
name | String | The property of the object. |
return | Boolean |