-
Notifications
You must be signed in to change notification settings - Fork 357
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
guess-who-elbines #346
base: main
Are you sure you want to change the base?
guess-who-elbines #346
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I love that you have a Taylor Swift theme for your game now! I just listened to folklore today :D
The game seems to work as it should, and I like that you comment on your code very comprehensively. I made some minor suggestions, but great job overall :)
//it "Grabs" the board element and changing the inner html | ||
board.innerHTML += | ||
//use the information in the array (charactersInPlay) to shoe information about people. | ||
//${person.name} the value of all the names in array (CHARACTERS) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The code is really well commented throughout so it's easy to keep up as a reader!
|
||
currentQuestion = { | ||
category: category, | ||
// value: value | ||
value: value, | ||
textForAlert: textForAlert, //S |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a suggestion, but I'm wondering if textForAlert could've been named in a more specific name to fit the context it's used for, maybe songType or chosenValue?
code/index.html
Outdated
|
||
<img class="guess-who-icon" src="images/guess-who-bubble.png" alt="Guess Who" /> | ||
|
||
<h1>Does the person have</h1> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line could be changed to a title that refers to your theme :)
No description provided.