class AClass{
someValue=0;
value(){return this.someValue;}
}
let inst=new AClass;
if ( inst ){ // I want this to invoke inst.value() actually
.....
}
我正在寻找一种设置类的方法,以便可以将其实例作为一个函数调用,这是一种"默认函数"。这可能在js吗?
修改 另一种选择:
if ( inst() ){
....
}