Object() : Object « Object Oriented « JavaScript Tutorial

Home
JavaScript Tutorial
1.Language Basics
2.Operators
3.Statement
4.Development
5.Number Data Type
6.String
7.Function
8.Global
9.Math
10.Form
11.Array
12.Date
13.Dialogs
14.Document
15.Event
16.Location
17.Navigator
18.Screen
19.Window
20.History
21.HTML Tags
22.Style
23.DOM Node
24.Drag Drop
25.Object Oriented
26.Regular Expressions
27.XML
28.GUI Components
29.Dojo toolkit
30.jQuery
31.Animation
32.MS JScript
JavaScript Tutorial » Object Oriented » Object 
25.2.2.Object()

Syntax

var variable = new Object(string)

The Object() object is a primitive data type from which all JavaScript objects are derived.

Properties of the Object() Object
Property
Description
constructor
Function that creates an object
eval()
Evaluates a string of JavaScript code for the specified object
prototype
Prototypes new properties for the specific object
toSource()
Returns a string representation for the object
toString()
Converts the object to its string representation
unwatch
Removes a watchpoint for the object
valueOf
Returns the value of the specific object
watch
Adds a watchpoint to the object property


<html>
    <body>
    <script language="JavaScript">
    <!---
    var myObj = new Object("foo");
    document.write("Object foo created");
    -->
    </script>
    </body>
    </html>
25.2.Object
25.2.1.The Object Class
25.2.2.Object()
25.2.3.Object.constructor
25.2.4.Object.eval()
25.2.5.Object.prototype
25.2.6.Object.toSource()
25.2.7.Object.toString()
25.2.8.Object.unwatch()
25.2.9.Object.valueOf()
25.2.10.Object.watch()
25.2.11.Add method to Object class
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.