function test(){
}
test.prototype.doSomething = function () {
return true;
}
in this example I can access test.doSomething(); But it whould be cool to just type t.doSomething(); Is it possible to define something like an alias for my class test?