function foo(chislo){ while(true){ if(chislo % 2 != 0){ return chislo + ' Простое число'; } else{ return foo(chislo + 1); } } } alert(foo(2));