Guess number code
user_0856540
plain_text
2 years ago
967 B
12
Indexable
// write your code // Generate a random number between 1 and 100
const secretNumber = Math.floor(Math.random() * 100) + 1;
let attempts = 0;
// Function to check if the guess is correct
function checkGuess(guess) {
attempts++;
if (guess < secretNumber) {
return "Too low! Try again.";
} else if (guess > secretNumber) {
return "Too high! Try again.";
} else {
return `Congratulations! You've guessed the number ${secretNumber} in ${attempts} attempts!`;
}
}
// Main function to play the game
function playGame() {
while (true) {
const guess = parseInt(prompt("Enter your guess (between 1 and 100):"));
if (isNaN(guess)) {
alert("Please enter a valid number.");
continue;
}
const result = checkGuess(guess);
alert(result);
if (guess === secretNumber) {
break;
}
}
}
// Call the main function to start the game
playGame();Editor is loading...