非推奨になるためarguments.callee
、次の式で arguments.callee` の代わりに何を使用しますか。
var self = this;
this.async(function(){
if(test()){
then();
}else{
self.async(arguments.callee);
}
});
非推奨になるためarguments.callee
、次の式で arguments.callee` の代わりに何を使用しますか。
var self = this;
this.async(function(){
if(test()){
then();
}else{
self.async(arguments.callee);
}
});