var logicCeshi = { aa:0, ceshioa:function (){ var _this=this; if(_this.aa<10){ _this.aa++; a(_this.aa); _this.ceshioa(); } } } function a(bb){ if(bb==10){ console.log('funcB'+bb); }else{ console.log('funcA'+bb); } } logicCeshi.ceshioa();
var logicCeshi = { aa:0, ceshioa:function (){ var _this=this; if(_this.aa<10){ _this.aa++; a(_this.aa); _this.ceshioa(); } } } function a(bb){ if(bb==10){ console.log('funcB'+bb); }else{ console.log('funcA'+bb); } } logicCeshi.ceshioa();