Number Guessing Game
This guess the number game is a short TypeScript/Node.js project that allows the user to guess the number generated by the computer. It’s quite simple and uses the random function to generate a number. There are three levels in that game.
-
Easy Level: In that user can guess a number between 1 to 3 and user have 3 chances. If guess correct user will get +10 points until the all chances used.
-
Medium Level: In that user can guess a number between 1 to 5and user have 5 chances. If guess correct user will get +10 points until the all chances used.
-
Hard Level: In that user can guess a number between 1 to 10and user have 10 chances. If guess correct user will get +10 points until the all chances used.