Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created September 24, 2020 17:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/ca3c0a02f1812a326f87ad6b80124020 to your computer and use it in GitHub Desktop.
Save parzibyte/ca3c0a02f1812a326f87ad6b80124020 to your computer and use it in GitHub Desktop.
discoverLetter(letter) {
for (const index in this.hiddenWord) {
if (this.hiddenWord[index].letter === letter) {
this.hiddenWord[index].hidden = false;
}
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment