In Chrome when i'm doing this:
var A = function(){};
A.prototype = { a:1,b:2 };
var aInst = new A;
aInst.a = 11;
console.log(aInst);
I see this in console:

I didn't see Objects with two properties with the same name ("a") before, something wrong with my Chrome?
