# ES5

// 父类
function Super(){
    this.x=1;
}
Super.prototype.getX=function(){
    return x;
}
// 子类
function Sub(){
    Super.call(this) // 初始化父类的属性
}
Sub.prototype=Object.create(Super.prototype);
Sub.prototype.constructor=Sub;
Last Updated: 6/15/2022, 2:52:08 PM