Comment on JavaScript right on the hardwareparentComments−Tichy13yYou know that you can just dofoo.prototype = { dothis: function(){}, dothat: function(){}}In the beginning I wrote it more likefoo.prototype.dothat = function(){} foo.prototype.dothis = function(){}Which was a lot more ugly.
Comments
You know that you can just do
foo.prototype = { dothis: function(){}, dothat: function(){}
}
In the beginning I wrote it more like
foo.prototype.dothat = function(){} foo.prototype.dothis = function(){}
Which was a lot more ugly.