Heim > Fragen und Antworten > Hauptteil
Ich habe das Gefühl, dass die zweite Variante problematischer ist als die erste. Gibt es irgendwelche Vorteile?
我想大声告诉你2017-07-05 11:00:44
当CheckObject
对象的属性较多的时候,整个函数体过长影响代码的阅读,第二种每个对象的属性都各自为一个方法,这样短小精悍,可阅读性强,代码逻辑上是一样的的
代言2017-07-05 11:00:44
感觉不出来第二种有啥明显优点,我喜欢第一种,要不就是第二种改成这样
var CheckObject = function(){};
CheckObject.prototype.checkName = function() {
}
var check = new CheckObject();
check.checkName();