使用es6的class和使用function的prototype兩種方法定義類的區別

傳統的使用function定義類:javascript function Person(name,age){ this.name=name; this.age=age; } Person.prototype.addAge=function(){ this.age++; }; Person.prototype.setName=function(name){
相關文章
相關標籤/搜索