Menu
Prototype Keyword Gives JavaScript Object Oriented Inheritance

In object oriented programming, inheritance allows one superclass to be specialized into many subclasses. The advantage of this is that any changes to the superclass automatically propagate to the subclasses. The way JavaScript supports inheritance is not like true object oriented languages like C+.

The JavaScript prototype keyword allows us to add properties and methods to an object or to allow an object to inherit the properties and methods of another object. Lets look at a simple example.

<script>

// constructor for Shape class
function Shape(x, y)
{
   this.x = x;
   this.y = y;
}

// add a method to Shape class
Shape.prototype.getx = function()
{
   return this.x;
};

// constuctor for Circle class
function Circle(x, y)
{
   this.x = x;
   this.y = y;
};

// The Circle class inherits the Shape object methods
Circle.prototype = new Shape();

// add a method to Circle class
Circle.prototype.gety = function()
{
   return this.y;
};

// instantiate a Circle object
var circle1 =  new Circle(10,12);

alert("x=" + circle1.getx() + " y=" + circle1.gety());

</script>

First we use a functional object constructor to create a Shape class with the properties x and y. We then use the prototype keyword to add a getx method to the Shape object. Then we create a Circle class. We use the prototype keyword to make the Circle class inherit the getx method of the Shape class.

After creating the Circle class, we use the prototype keyword to add the gety method to the Circle class. We then create an instance of the Circle object named circle1, initializing it with x=10 and y=12.

The last line of the code displays the values of x and y using circle1's getx method that it inherited from the Shape object, and using circle1's gety method that we added directly to the circle1 object.

This example has demonstrated how to use the prototype keyword to give JavaScript the ability to use inheritance.


Learn more at amazon.com

More Java Script Code:
• Easy HTML5 Drag and Drop
• JavaScript Variable Scope
• Four Ways to Use Java Script Event Handlers
• Easy Expanding Menu Code
• Easy Java Script Code for Sideways Slide show
• Calculate The Points of an Equilateral Triangle
• A Cross-Browser Solution for Handling JavaScript Events
• Disable IE8 Accelerators on Your Website
• Creating Java Script Dynamic or anonymous Functions at Runtime
• How Far Did the User Scroll?