Define Object, use its instance : Objects Object Oriented « Language Basics « JavaScript DHTML

Home
JavaScript DHTML
1.Ajax Layer
2.Data Type
3.Date Time
4.Development
5.Document
6.Dojo toolkit
7.Event
8.Event onMethod
9.Ext JS
10.Form Control
11.GUI Components
12.HTML
13.Javascript Collections
14.Javascript Objects
15.Javascript Properties
16.jQuery
17.Language Basics
18.Mochkit
19.Mootools
20.Node Operation
21.Object Oriented
22.Page Components
23.Rico
24.Scriptaculous
25.Security
26.SmartClient
27.Style Layout
28.Table
29.Utilities
30.Window Browser
31.YUI Library
JavaScript DHTML » Language Basics » Objects Object Oriented 
Define Object, use its instance
 
<HTML>
<HEAD>
<SCRIPT language="JavaScript">
<!-- 
function get_price(){
  var the_price=1000;

  return the_price;
}

function computer(speed,hdspace,ram){
    this.speed=speed;
    this.hdspace=hdspace;
    this.ram=ram;
    this.price=get_price;
}

var pc1= new computer("500mHz","15GB","128MB");
var pc2= new computer("450mHz","10GB","64MB");
var pc3= new computer("350mHz","7GB","32MB");

var pc1_price= pc1.price();
var pc2_price= pc2.price();
var pc3_price= pc3.price();

//-->
</SCRIPT>
</HEAD>
<BODY>
<SCRIPT language="JavaScript">
<!-- 

alert(pc1.hdspace+","+pc1.ram +","+pc1_price);
alert(pc2.speed+","+pc2.hdspace+","+pc2.ram+","+pc2_price);
alert(pc3.speed+","+pc3.hdspace+","+pc3.ram+","+pc3_price);

//-->
</SCRIPT>

</BODY>

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