function test(){
}
test.prototype.doSomething = function () {
return true;
}
在这个例子中,我可以访问 test.doSomething(); 但是只要输入 t.doSomething(); 就很酷了。是否可以为我的班级测试定义类似别名的东西?
function test(){
}
test.prototype.doSomething = function () {
return true;
}
在这个例子中,我可以访问 test.doSomething(); 但是只要输入 t.doSomething(); 就很酷了。是否可以为我的班级测试定义类似别名的东西?