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:
• How to Use HTML5 canvas arc and arcTo Functions
• Easy Java Script Butterfly Animation
• Sams Teach Yourself HTML5 in 10 Minutes
• Synchronous and Asynchronous Script Loading
• Introduction to JavaScript Programming
• Using the Java Script Array Object
• Easy Code to Add Mouse Trails to Your Webpage
• Java Script to Get Selected Item from Drop-down Select List
• Calendars for Your Website
• Easy JavaScript Web Storage Code