Elementary OO Javascript and prototyping I
Considering the apparent fact that everything in Javascript is an object to be another day's story we will learn what is object oriented javascript. a) Object declaration. var foo={}; function Foo(){}; The first is a literal object and the second is a constructor object. The literal object is used when the same object is used throughout and any changes to the object will be carried forward. The constructor object is used when multiple instances of the object are required with some initial work is already done during object declaration. b) Method and Property declaration. var foo={ bar : "foobar", getName : function(){ return this.bar; } }; alert(foo.getName()); // will display - foobar function Foo(){ this.bar = "foobar"; this.getName = function(){ return this.bar; } } va...