function() {} asFunction() • Como um método; var object = { method: function() {} } object.method() • Como um construtor; var Constructor = function() {} new Constructor
function() { return "I am in Lol Prototype"; }; Object.prototype.bla = function() { return "I am in Object Prototype"; }; var lol = new Lol; lol.wut; => "I am in Lol Prototype" lol.bla; => "I am in Object Prototype"