如何获取到一个实例对象的原型对象

转自:https://www.cnblogs.com/minigrasshopper/p/8066735.html

  1. 从构造函数获得原型对象 构造函数.prototype
  2. 从对象实例获得原型对象
    1. 对象实例.__prpto__
    2. Object.getPrototypeOf(对象实例)

示例:

function Student(){
    this.name = "小马扎"; 
    this.age = 18;
}
var lilei = new Student();  // 创建对象实例
console.log(Student.prototype);  //Student{}
console.log(lilei.__proto__);  //Student{}
console.log(Object.getPrototypeOf(lilei));    //Student{}

你可能感兴趣的:(如何获取到一个实例对象的原型对象)