标签: javascript prototype
var A = function () { this.x = function () { console.log('hello'); }; }; A.prototype.x = function () { console.log('world'); }; var B = new A(); B.x() // 'hello', why?
我想知道为什么B.x()不是'world',即使我更改了A的原型。有人知道为什么吗?
B.x()
'world'
A