A的原型是什么?

时间:2019-11-16 11:39:33

标签: 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的原型。有人知道为什么吗?

0 个答案:

没有答案