I try call method doSomething in hello function in student object without prototype just attach on this. Student extends Person object.
function Person(name){
    this._name = name;
    this.doSomething = function () {
        console.log('doSomething');
     }
}
function Student (name, grade) {
    this._name = name;
    this._grade = grade;
    this.hello = function  () {
        //How i can call doSomething() here
    }
}