Could someone please explain the significance of prototype.init function in JavaScript and when it is called during object instantiation?
Why would you want to overwrite it with an empty function?
I am reading the JavaScript for Web book and am stuck on the this for the past few hours…what is piece of code supposed to achieve?
var Class = function(){
var klass = function(){
this.init.apply(this, arguments);
};
klass.prototype.init = function(){};
// Shortcut to access prototype
klass.fn = klass.prototype;
// Shortcut to access class
klass.fn.parent = klass;
...
}
This is just too much magic for me…:)
I’m not sure what you don’t understand.
initis simply a method like any other, that happens to be called in the constructor and with the same parameters as the constructor. If it’s empty then it’s just because the person who wrote it didn’t need to put anything in it for now but wanted to lay down the groundworks of his class.http://jsfiddle.net/Hmgch/