淺談原型鏈

代碼: function Person(name,age){ this.name=name; this.age=age; } Person.prototype.hi=function(){ console.log("Hi,my name is"+this.name+",I'm"+this.age+"years old now."); }; Person.prototype.LEGS_NUM=2;
相關文章
相關標籤/搜索