Skip to content

Instantly share code, notes, and snippets.

@whal-e3
Created November 4, 2020 14:45
Show Gist options
  • Save whal-e3/2ea1ca5d8e6a4a79c12307359baa3f87 to your computer and use it in GitHub Desktop.
Save whal-e3/2ea1ca5d8e6a4a79c12307359baa3f87 to your computer and use it in GitHub Desktop.
JS Number guessing game - window.location.reload, a === b ? K : P, isNaN(),
/*
GAME FUNCTION:
- Player must guess a number between a min and max
- Player gets a certain amount of guesses
- Notify player of guesses remaining
- Notify the player of the correct answer if loose
- Let player choose to play again
*/
// Game values
let min = 1,
max = 10,
winningNum = getRandomNum(min, max),
guessesLeft = 3;
// UI Elements
const game = document.querySelector('#game'),
minNum = document.querySelector('.min-num'),
maxNum = document.querySelector('.max-num'),
guessBtn = document.querySelector('#guess-btn'),
guessInput = document.querySelector('#guess-input'),
message = document.querySelector('.message');
// Assign UI min and max
minNum.textContent = min;
maxNum.textContent = max;
game.addEventListener('mousedown', function (e) {
if (e.target.className === 'play-again') {
window.location.reload();
}
});
// Listen for guess
guessBtn.addEventListener('click', function () {
let guess = parseInt(guessInput.value);
// Validate
if (isNaN(guess) || guess < min || guess > max) {
setMessage(`Please enter a number between ${min} and ${max}`, 'red');
guessInput.value = '';
}
// Check if won
else if (guess === winningNum) {
// Game over - won
gameOver(true, `${winningNum} is correct, YOU WIN!`);
} else {
// Wrong number
guessesLeft -= 1;
if (guessesLeft === 0) {
// Game over - lost
gameOver(
false,
`Game Over, you lost. The correct number was ${winningNum}`
);
} else {
// Game continues - answer wrong
// Change border color
guessInput.style.borderColor = 'red';
// Clear Input
guessInput.value = '';
// Tell user its the wrong number
setMessage(
`${guess} is not correct, ${guessesLeft} guesses left`,
'red'
);
}
}
});
// Game over
function gameOver(won, msg) {
let color;
won === true ? (color = 'green') : (color = 'red');
// Disable input
guessInput.disabled = true;
// Change border color
guessInput.style.borderColor = color;
// Set text color
message.style.color = color;
// Set message
setMessage(msg);
// Play again?
guessBtn.value = 'Play Again';
guessBtn.classList.add('play-again');
}
function getRandomNum(min, max) {
return Math.floor(Math.random() * (max - min + 1) + min);
}
// Set message
function setMessage(msg, color) {
message.style.color = color;
message.textContent = msg;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment