原型在JavaScript中意味着什么

时间:2017-08-23 07:22:45

标签: javascript prototype

我做了类似的事。

var person = function (){
  this.print = function ()
  {
    console.log('person');
  }
}

console.log(person.prototype);

这会记录Object{},但如果我这样做:

person.prototype.print = function () {  
  console.log('person');
}

console.log(person.prototype);

现在它打印整个对象及其 proto

0 个答案:

没有答案