1. 程式人生 > >構造函數與原型繼承的使用

構造函數與原型繼承的使用

學習 col eat fun this 需要 繼承 PE clas

 
function createFn(name){
        this.name = name ;
    }
    createFn.prototype.study = function(){
        return this.name+"在學習";;
    }
    var createFn2 = new createFn("tom");
    alert(createFn2.study());//方法調用需要加括號。



構造函數與原型繼承的使用