Object object
You can define your own objects in JavaScript, with custom properties and
methods.
Constructor:
new Object()
{ } //object literal. JavaScript 1.2
Properties
|
Properties |
Description |
|
constructor |
Specifies the function that's the constructor for
the object. |
Methods
|
Methods |
Description |
|
hasOwnProperty() |
n/a |
|
isPrototypeOf |
n/a |
|
propertyIsEnumerable() |
n/a |
|
toLocalString() |
n/a |
|
toString() |
n/a |
|
valueOf() |
n/a |