https://github.com/jaymar14/hangman-game
Hangman style computer game using JavaScript
https://github.com/jaymar14/hangman-game
css3 front-end html5 javascript
Last synced: about 1 month ago
JSON representation
Hangman style computer game using JavaScript
- Host: GitHub
- URL: https://github.com/jaymar14/hangman-game
- Owner: jaymar14
- Created: 2017-08-06T22:56:55.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-12-28T17:53:31.000Z (over 8 years ago)
- Last Synced: 2025-06-03T21:24:03.173Z (about 1 year ago)
- Topics: css3, front-end, html5, javascript
- Language: JavaScript
- Homepage: https://jaymar14.github.io/Hangman-Game/
- Size: 5.86 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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.