Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
function test(){ rnd = Math.floor(Math.random() * 10); //console.log(rnd); if (rnd==6) return rnd; else return test(); } console.log(test());