An object and its constructor : Objects Object Oriented « Language Basics « JavaScript DHTML






An object and its constructor

 

<html>
<head>
<title>Properties</title>

<script type = "text/javascript">
    var aObject = {};
    
    function aObject(a,b,c,d) {
        this.myValueA = a;
        this.myValueB = b;
        this.myValueC = c;
        this.myValueD = d;
    }

    aObject["A"] = new aObject("A","C","F",2.0);
    aObject["B"] = new aObject("B","D","V",2.3);

</script>
</head>
<body>
<script type = "text/javascript" >

for (var propt in aObject) {
    document.write(propt+"<BR>");
}  

</script>
</body>
</html>

   
  








Related examples in the same category

1.Object utility: create, parse and profile
2.Define Object, use its instance
3.Define and use object
4. Creating an Object and Using Object Instance Properties and Methods
5. Object-Oriented Planetary Data Presentation
6.The Book Object Definition
7.Complete Example of Using the employee, client, and project Objects
8.Source Code for the showBook() Example
9.Using the Book Object Constructor
10.Creating Objects Dynamically
11.Object to array
12.Utility class for JavaScript class definition
13.Create an object and add attributes
14.Use for in loop to display all attributes from an object
15.Display the properties from an object one by one
16.Use function as the object constructor