原型链

    /**
     * 父函数
     */
    function People(){}
    
    People.prototype.age = '12';
    
    
    /**
     * 子函数
     */
    function Man(){};
    
    Man.prototype = new People();
    
    Man.prototype.constructor = People
    
    
    /**
     * 应用
     */
    
    var man = new Man();
    
    console.log(man.age)            //输出:12
    
    
    /**
     * 原型链
     */
    console.log(man.__proto__)      //输出:People {}
    
    console.log(man.__proto__.age)  //输出:12
    
    console.log(man.__proto__.__proto__)  //输出:Object {age: "12"}
    
    console.log(man.__proto__.__proto__.age)  //输出:输出:12

你可能感兴趣的:(原型链)