第六章:在創(chuàng)建對象的方式中有這樣一種動態(tài)原型模式function Persion() { this.name="wyq"; this.friends=["a", "b", "c"]; //下面的代碼有什么意義??? 每次new一個對象的時候肯定要執(zhí)行里面的函數(shù)啊
if(typeof this.sayName !=="function"){ this.sayName = function () { console.log("friends",this.friends);
}
}
}直接這樣寫不就好了嗎?function Persion() { this.name="wyq"; this.friends=["a", "b", "c"];
}
Persion.prototype = { sayName: function () { console.log("this.name", this.name);
},
};
讀《js高級程序設(shè)計》問題?
米琪卡哇伊
2018-08-03 16:31:42