關於js的構造函數和原型對象

構造函數的特色 一、構造函數的首字母必須大寫,用來區分於普通函數 二、內部使用的this對象,來指向即將要生成的實例對象 三、使用New來生成實例對象 eg: function Person(name,age){ this.name=name; this.age=age; this.sayHello=function(){ console.log(this.name+"say hello"); }
相關文章
相關標籤/搜索