Skip to content

jaymar14/Hangman-Game

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

Hangman-Game

In this assignment, you'll create a Hangman computer game. This app will run in the browser, and feature dynamically updated HTML powered by your JavaScript code.

Choose a theme for your game! You can choose any subject for your theme, though, so be creative! Use key events to listen for the letters that your players will type. Display the following on the page: Press any key to get started! Wins: (# of times user guessed the word correctly). If the word is madonna, display it like this when the game starts: _ _ _ _ _ _ _. As the user guesses the correct letters, reveal them: m a d o _ _ a. Number of Guesses Remaining: (# of guesses remaining for the user). Letters Already Guessed: (Letters the user has guessed, displayed like L Z Y H). After the user wins/loses the game should automatically choose another word and make the user play it.