js高級知識—繼承

原型鏈繼承函數 // 定義一我的類 function Person (name) {   // 屬性  this.name = name || 'Person'; // 實例方法   this.work = function(){     console.log(this.name +'專業編代碼!');   } } // 原型方法 Person.prototype.play = function
相關文章
相關標籤/搜索