visit
unsplash.com
I like javascript, as always. But it was hurt, every time when I was required to program in OOP pattern. All those topics: Objects, Classes,Prototype, Inheritance etc., are the pain for developer, which caused by the personality of “loose comparison temper” and “auto type conversion OCD” of JS.
This is an example from :
First, Rabbit is a object, with public valuable jumps and default value “yes”.
function Rabbit() { this.jumps = "yes";};var rabbit = new Rabbit();console.log(rabbit.jumps); // yesconsole.log(Rabbit.prototype.constructor); // outputs exactly the code of the function Rabbit();
Second, we want to change the code in Rabbit() so that the var jumps with different default value “no”. Well, modifying default value of Object, and there is Object.prototype.constructor( ), my gut tells me modifying the constructor function and problem will solved. BUT it is not.
Rabbit.prototype.constructor = function Rabbit() { this.jumps = "no";};console.log(Rabbit.prototype.constructor); // again outputs the code with new this.jumps = "no";var rabbit2 = new Rabbit();// create new object with new constructorconsole.log(rabbit2.jumps); // still
var oldProto = Rabbit.prototype;Rabbit = function() { this.jumps = "no";};
Rabbit.prototype = oldProto;
Like this story? It is helpful to others? It helps me know if you’d like to see write more about his topic and helps people see the story, when tap the heart below.
_Why is it impossible to change constructor function from prototype?_
_Tuesday, August 17, 2010 Javascript Inheritance Done Right_