Intro
Hey everyone! This is a number guessing game I made. Let me know if you like the code!
Description/Instructions
Guess the number! Hint: It's between 1-100.
Outro
Thanks for reading and playing! Here are some socials.
Repl Profile: dudeactualdev
Github Profile: dudeactual
Github Repository: Number-Guessing-Game
Top comments (5)
I think there may be something not quite right with your code (
randomNumber = Math.floor(Math.random() * 100) + 1;
)! The number was 78 🤣Other than that, fun little game!
Oops! Thanks
cool.
You could generate the random in the back-end so you wouldn't be able to use the browser console to find out the number lol.
But for academic purposes very good.
Thanks for the feedback!
Is it simple like enter a guess and if it's correct then add points??