please dont rip this site

Language Java Script Definitive Examples 7.2.TXT

//  This example is from the book _JavaScript: The Definitive Guide_.    
// Written by David Flanagan.  Copyright (c) 1996 O'Reilly & Associates.
// This example is provided WITHOUT WARRANTY either expressed or implied.
// You may study, use, modify, and distribute it for any purpose.        

// This is a function. It uses the this keyword, so
// it doesn't make sense to invoke this function by itself; it
// needs instead be made a method of some object, some object that has
// "width" and "height" properties defined.
function compute_area() 
{
    return this.width * this.height;
}

// Create a new Rectangle object, using the constructor defined earlier
var rect =index.html new Rectangle(8.5, 11);

// Define a method by assigning the function to a property of the object
rect.area = compute_area;

// Invoke the new method like this:
a = rect.area();    // a = 8.5*11 = 93.5


file: /Techref/language/java/script/definitive/examples/7.2.txt, 0KB, , updated: 1997/4/4 11:59, local time: 2024/5/16 09:48,
TOP NEW HELP FIND: 
3.138.114.132:LOG IN

 ©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions?
Please DO link to this page! Digg it! / MAKE!

<A HREF="http://techref.massmind.org/Techref/language/java/script/definitive/examples/7.2.txt"> language java script definitive examples 7</A>

Did you find what you needed?

 

Welcome to massmind.org!

 

Welcome to techref.massmind.org!

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  .