I have the following code:
var A = function() {};
var a = new A();
var b = new A();
A.prototype.member1 = 10;
A.prototype = {}
var c = new A();
console.log(a.member1);
console.log(a.constructor === b.constructor);
console.log(a.constructor === c.constructor);
console.log('---------');
console.log(c.member1);
It's output is:
10
true
false
---------
undefined
undefined
The prototype of a and b has not changed and c had a new one. Am i right that this was caused by the fact that a.constructor is not equal to c.constructor and each of them had own prototype? Are there any other circs when constructors of two objects might not be equal?
Extra question: why there were printed two undefined strings? (Chromium)
a1supposed to bec? – Frédéric Hamidi Aug 22 '12 at 19:59console.log(undefined)will log two things: the loggedundefinedand the returnedundefined. – pimvdb Aug 22 '12 at 20:01