var b = function a(x) {
        x && a(--x);
       if(x>0){
       return true;
}else{
   return false;
}
    };
这样你应该清楚了吧