This documentation is archived and is not being maintained.
Object Object
Visual Studio 2010
Provides functionality common to all JScript objects.
function Object([value : { ActiveXObject | Array | Boolean | Date | Enumerator | Error | Function | Number | Object | RegExp | String | VBArray ])
The Object object forms the basis of all other JScript objects; all of its methods and properties are available in all other objects. The methods, which can be redefined in user-defined objects, are called by JScript at appropriate times. The toString method is an example of a frequently redefined Object method.
Variables defined without a type annotation are implicitly of type Object. Each JScript object has, in addition to its own properties and methods, all the properties and methods of the Object object.
Show: