Tecvid,
// можно
function Constructor() {
this.property = 'property';
}
Constructor.prototype.method1 = function(){};
Constructor.prototype.method2 = function(){};
var object = new Constructor();
// а можно сразу объект присвоить
var object = {
property: 'property',
method1: function(){},
method2: function(){}
};