2
簡而言之,這兩段代碼之間是否有區別,是否有任何理由使用一個和另一個?同時定義整個原型和單獨設置方法之間的區別
代碼#1:
var thing=function(){}
thing.prototype={
some_method:function(){
alert('stuff');
}
}
代碼#2:
var thing=function(){}
thing.prototype.some_method=function(){
alert('stuff');
}