簡単に言えば、これら2つのコードの間に違いはありますか?また、一方を使用する理由はありますか?
コード#1:
var thing=function(){}
thing.prototype={
some_method:function(){
alert('stuff');
}
}
コード#2:
var thing=function(){}
thing.prototype.some_method=function(){
alert('stuff');
}