game(Math.round(Math.random() * 100));
function game(rand) {
var userChoice = parseInt(prompt('Введите число', ''), 10);
if (userChoice > rand) {
alert('Много');
game(rand);
} else if (userChoice < rand) {
alert('Мало');
game(rand);
} else {
// угадал
};
}