简而言之,这两段代码之间有什么区别吗?有什么理由使用其中的一段吗?
代码#1:
var thing=function(){}
thing.prototype={
some_method:function(){
alert('stuff');
}
}
代码#2:
var thing=function(){}
thing.prototype.some_method=function(){
alert('stuff');
}