我试图理解JS中的原型,并且我已经看到了两种不同的技术。
function Class() {
this.name = "";
}
Class.prototype.methodOne= function () {
}
Class.prototype.methodTwo= function () {
}
Class.prototype.methodThree= function () {
}
/*Second way of doing this is:-*/
function Class() {
this.name = "";
}
Class.prototype = {
methodOne: function() {
},
methodTwo: function() {
},
methodThree: function() {
}
}
我有以下问题:-
我已经阅读了很多与原型相关的主题,但是没有任何线索。