function Base() {
        this.name="name"
        this.age=18
    }
    Base.prototype={
        say() {
            alert("hi")
        },
        ex:"lucy"
    }
    function Student() {
        Base.call(this,arguments)//////  
        this.add="US"
    }
    Student.prototype=new Base()//call
    
    let tom=new Student()
    tom.say()						