Creating an Object and Using Object Instance Properties and Methods : Objects Object Oriented : Language Basics : JavaScript DHTML examples (example source code) Organized by topic

JavaScript DHTML
1. Ajax Layer
2. Data Type
3. Date Time
4. Development
5. Document
6. Event
7. Event onMethod
8. Form Control
9. GUI Components
10. HTML
11. Javascript Collections
12. Javascript Objects
13. Language Basics
14. Node Operation
15. Object Oriented
16. Page Components
17. Security
18. Style Layout
19. Table
20. Utilities
21. Window Browser
Java
Java Tutorial
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
JavaScript DHTML » Language Basics » Objects Object Oriented 
Creating an Object and Using Object Instance Properties and Methods

/*

Learn How to Program Using Any Web Browser
by Harold Davis 

Apress CopyRight 2004

ISBN: 1590591135
*/

<HTML>
<HEAD>
<TITLE>Instance method demo</TITLE>
</HEAD>
<BODY>
<H1>
<SCRIPT
   function Rectangle(height, width){ 
   // constructor function 
      this.height =  height; 
      this.width = width; 
   
   // create the function 
   function calc_Area () { 
      return this.height * this.width; 
   
   // turn the function into an object method 
   Rectangle.prototype.calcArea = calc_Area; 
   // instantiate the object 
   var theRectangle = new Rectangle (35)

   // set an instance property 
   theRectangle.width = 10

   // call and display the instance properties and method return 
   document.write("The rectangle instance height is: " + theRectangle.height + "<br>")
   document.write("The rectangle instance width is: " + theRectangle.width  + "<br>")
   document.write ("The calcArea method returns: " + theRectangle.calcArea())
   </SCRIPT>
</H1>
</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.  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
Home | Contact Us
Copyright 2003 - 07 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.