Problog
This post will cover the following topics:
- Javascript is not a toy!
- How to define a class
- How to set Publich methods
- How to set Private variables
- How to set static methods
JavaScript for Dummies?
Programming languages are like football teams – it doesn’t matter which you like, you will support it and protect its interest no matter what. Back in the days when i was young, I remember the same old discussion between two development teams where i used to work – C++ vs. Delphi. I guess its an endless discussion where the people and the languages change but the content basically stay the same.
What’s weird is that when i talk to fellow developers about JavaScript i get a weird feeling that everybody looks at it as more of a toy rather than a powerful client side development tool. The major critic that i get is this is a very simple functional language, that cannot match to the object oriented concept that drive most languages. One friend even told me that this is a language for bored teenagers.
I agree – JavaScript is an easy to learn language, but that doesn’t mean that it’s a simple one. I see it as a positive thing that you can quickly achieve your goals without needing to know all the language capabilities, and you can learn very fast how to really use the language capabilities to accomplish things even better or faster.
I decided to show how you can shape JavaScript to be used as an Object Oriented language. I don’t think that you must code JavaScript always in object oriented style, but you should have this ability and choose when you think it’s the best solution to implement.
In this post i will focus on the basics of Object Oriented programming – public, private and static declarations.
Defining a Class
In Javascript everything is an object, even functions. In order to define a new class we should just define a new function like so:
function Player(url){}
No in order to create an instance of this class we can write the following:
var player1 = new Player("http://youtube.com/...");
This line of code will create a new instance of the function object and return the reference to it. Not to confuse, but if the function return a value it won’t be placed in player1. for example, let’s say you have a function like so:
function f1(){ return 100;}
var a = f1();
var b = new f1();
The difference between the two is that a will be assigned with 100 while b will be assigned with the reference to a new f1 function object.
Public Methods
As in any object oriented language, the first thing you would like to do is define some public methods for your class. In Javascritp we will use the prototype keyword to setup new methods for this class. You can do this like so:
function Player(url){
}
Player.prototype.start = function(){
//...do some stuff here...
}
Player.prototype.stop = function(){
//...do some stufff here...
}
For those of you who prefer to create classes encapsulated in one declaration you can also write the same code as so:
function Player(url){
}
Player.prototype = {
start: function(){
//...do some stuff here...
} ,
stop: function(){
//...do some stuff here...
}
};
These two declarations achieve the same result. This is part of the reasons that i love javascript so much – it can be so simple and so complicated at the same time.
Now you can use the class methods as so:
var player1 = new Player("http://youtube.com/...");
player1.start();
player1.stop();
Public Variables
In order to set public variables we will use the this keyword that allow us to preserve state for our object.
function Player(url){
this.url = url;
}
Now we have a public variable that can be accessed using the class properties as so:
var player1 = new Player("http://youtube.com/...");
player1.url = "http://youtube.com/differenturl";
player1.start();
Usually it is bad practice to allow access to the class inner variables, and such variables needs to be set private.
Private Variables
In order to create private variables we would simple declare them in the constructor as so:
function Player(url){
var m_url = url;
}
Now the variable m_url is not accessible to anyone. Well that doesn’t make sense, right? We want to allow our public methods to access the data.
We solve this using closure. A closure is a protected variable space, created by using nested functions. In order to better understand it we first need to understand how JavaScript function declaration works. Function declaration in Javascritp is based on two main concepts: lexically scoped and function-level scope. Lexically means that function run in the scope they are defined in and not in the scope they are executed in, as other language usually do. Function-level means, like most languages, that a variable declared in function is not accessible outside that function. Using these concepts we can now declare our private variables that will be accessible to our public methods:
function Player(url){
var m_url = url;
this.start = function(){
//now i can access m_url
};
this.stop = function(){
//now i can access m_url
}
}
The difference between this code and the previous ones, is that the public methods were declared using the prototype while now they are declared using the this keyword. The main difference is in the way the JavaScript engine execute this code. When declaring functions using the prototype, the Javascript engine creates only one instance of the function in memory and dynamically assigns the this according to the calling object. On the other hand, when declaring a method inside the object constructor, as we did in the last example, the JavaScript engine will create a copy of that function in memory for every instance that you create from the Player class. Usually this shouldn’t be a big factor, but its important to know the difference.
Static Methods & Variables
Using closures and the prototype characteristic i mentioned above you can also create static methods like so:
function Player(url){
var m_url = url;
this.start = function(){
//now i can access m_url
};
this.stop = function(){
//now i can access m_url
}
var static_int = 0;
Player.prototype.getStatic = function(){ return static_int;};
Player.prototype.setStatic = function(v){ static_int = v; };
}
var p1 = new Player();
var p2 = new Player();
p1.setStatic(100);
alert( p2.getStatic() ); //will print 100.
I hope this example shows the power of JavaScript once you understand how to shape it to whatever you need. I the next post I will show how to implement interfaces and inheritance in Javascript.
Update
I got a comment about the static variable implementation, that there is a bug there. I checked it and there is a bug with the way i set the static variable. in order for it to be static we also need to declare it using the prototype as so:
Player.prototype.tatic_int = 0 ;
Player.prototype.getStatic = function(){ return static_int;};
Player.prototype.setStatic = function(v){ static_int = v; };









Hi – nice article!
Re: your static methods example: in the OO languages I'm familiar with, static vars & methods are accessed via the class name, rather than off instances of the class.
Here's a version of your example that works that way:
Player.static_int = 0;
Player.getStatic = function(){ return static_int;};
Player.setStatic = function(v){ static_int = v; };
Player.setStatic(100);
alert( Player.getStatic() ); //will print 100.
Link | February 16th, 2010 at 3:27 pm
Thanks for the comment.
You can write many things in more then one way – this is i think what is good and bad in Javascript (depends on the developer skills)
I showed my example where everything is encapsulated inside the constructor to give it a more C++ feeling, so C++ developers can relate :)
Link | February 16th, 2010 at 3:40 pm
In your static method sample, there is a problem, setStatic and getStatic always access the static_int that is associated to the latest instance. It won't work if I insert another “var p3 = new Player()” after p1.setStatic(100), details below:
function Player(url){
var m_url = url;
this.start = function(){
//now i can access m_url
};
this.stop = function(){
//now i can access m_url
}
var static_int = 0;
Player.prototype.getStatic = function(){ return static_int;};
Player.prototype.setStatic = function(v){ static_int = v; };
this.dump = function() { WScript.Echo(static_int); }
}
var p1 = new Player();
var p2 = new Player();
p1.setStatic(100);
var p3 = new Player();
alert.Echo( p2.getStatic() ); //will print 0 instead of 100 !!
Link | February 17th, 2010 at 8:32 pm
Hi there, good article. There is a problem with the “Static Methods & Variables” section, since setStatic and getStatic will always try to manipulate the static_int for the latest instance of class Player, so if
var p1 = new Player();
var p2 = new Player();
p1.setStatic(100);
var p3 = new Player(); // insert this line, then the next line will print 0 instead of 100
alert( p2.getStatic() ); //will print 0
Link | February 17th, 2010 at 8:36 pm
I made a little jquery plugin.. a multicolumn tree table using this method!
Link | February 18th, 2010 at 6:08 am
very cool examples to learn some basic OOP in JavaScript, thank you very much for sharing.
Can I share this post on my JavaScript library?
Awaiting your response. Thank
Link | February 18th, 2010 at 8:40 pm
Nice, share the link to the plugin if you like…
Link | February 19th, 2010 at 8:29 am
Sure, just put the proper credit :)
Link | February 19th, 2010 at 8:31 am
Amir,
This is a great, concise explanation. Can you comment on two other JS OO items? First is how creating a JS class then instantiating it differs from creating an OO-like structure (with methods and instance variables) without defining a class. e.g.
var Player = {
m_url : undefined,
start: function() {},
stop: function() {},
init: function(url) {m_url = url}
};
Link | February 22nd, 2010 at 3:19 pm
Can you also show an example of how to implement inheritance in JS?
Link | February 22nd, 2010 at 3:20 pm
There is a nice summary of Object Literal Notation here:
http://www.javascriptkit.com/javatutors/oopjs.s…
Link | February 24th, 2010 at 7:07 am
Thanks for sharing.
Link | February 24th, 2010 at 11:45 pm
I'm writing a post about inheritance and interfaces. I hope to publish it next week.
Link | February 24th, 2010 at 11:58 pm
function superClass(){
this.superClassX = “superX”;
}
SubClass.prototype = new SuperClass;
SubClass.prototype.constructor = SubClass;
function SubClass()
{
SuperClass.call(this);
this.subClassX = “SubX”;
}
var subObj = new SubClass();
alert(subObj.superClassX + ', ' +subObj.subClassX );
Link | February 26th, 2010 at 10:02 am
Found two more related articles:
This one also covers Javascript OO: http://www.digital-web.com/articles/objectifyin…
And this one covers other useful info such as accessing function arguments, lambda's, and passing functions into functions as an argument: http://www.hunlock.com/blogs/Functional_Javascript
Link | March 7th, 2010 at 7:02 am
Javascript Inheritance | Amir Harel wrote:
[...] Object Oriented Javascript [...]
Link | March 22nd, 2010 at 7:02 am
DARRELL wrote:
Buy:Cialis Super Active+.VPXL.Cialis Soft Tabs.Soma.Viagra Super Force.Zithromax.Propecia.Viagra.Viagra Super Active+.Levitra.Tramadol.Cialis.Viagra Professional.Maxaman.Viagra Soft Tabs.Cialis Professional.Super Active ED Pack….
Link | July 21st, 2010 at 3:16 pm
CALVIN wrote:
Buy:100% Pure Okinawan Coral Calcium.Synthroid.Nexium.Zyban.Actos.Valtrex.Zovirax.Human Growth Hormone.Mega Hoodia.Prednisolone.Lumigan.Accutane.Arimidex.Prevacid.Retin-A.Petcam (Metacam) Oral Suspension….
Link | September 5th, 2010 at 6:54 am
KEITH wrote:
Buy:Zetia.Aricept.Wellbutrin SR.Zocor.Buspar.Ventolin.Lipitor.Seroquel.Lasix.Benicar.Female Pink Viagra.Nymphomax.Cozaar.Prozac.Female Cialis.SleepWell.Acomplia.Amoxicillin.Advair.Lipothin….
Link | September 6th, 2010 at 3:16 am
There is a small typo in updated code line #1. It should be 'Player.prototype.static_int = 0 ;'. Great stuff though.
This is one of my attempt at Classical Object Oriented style JS – http://code.google.com/p/oopsjs/
Link | September 6th, 2010 at 11:52 am
There is a small typo in updated code line #1. It should be 'Player.prototype.static_int = 0 ;'. Great stuff though.
This is one of my attempt at Classical Object Oriented style JS – http://code.google.com/p/oopsj…/
Link | September 6th, 2010 at 5:52 pm
HOMER wrote:
Buy:Zovirax.Valtrex.Retin-A.Accutane.100% Pure Okinawan Coral Calcium.Actos.Mega Hoodia.Prednisolone.Zyban.Prevacid.Petcam (Metacam) Oral Suspension.Synthroid.Nexium.Human Growth Hormone.Arimidex.Lumigan….
Link | September 6th, 2010 at 10:05 pm
whatever feels good to you, my man. but,i want nothing to do with this. not here. Anyway, i subscribed to your rss feed which really should do the trick! Have a good day!
Link | January 8th, 2011 at 9:26 pm