puoi usare prototype
codice:
var Oggetto = Class.create();
Oggetto.prototype = {
  initialize: function(param1, param2, ...) {
    // questo è il costruttore
  },
  funzione: function(param1, param2, ...) {
    // queste sono i metodi
  }
}