SOURCE

function Mother(name){
    this.name = name
}

var son = new Mother('da')

console.log(son.name)

/*
    1.创建一个新的对象son
    2.连接新对象 son.__proto__ = Mother.prototype
    3.使用的Mother.call方法绑定this
    4.执行Mother中的代码
    5.返回值会自动返回这个对象
*/
console 命令行工具 X clear

                    
>
console