From 154c0a3e63af39d14fe73a65b2bf4e6907b672bb Mon Sep 17 00:00:00 2001 From: AdamJCavanaugh <47431642+AdamJCavanaugh@users.noreply.github.com> Date: Sat, 15 Feb 2025 14:12:09 -0500 Subject: [PATCH 1/2] remove unnecessary script block; fix relative uri --- index.html | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/index.html b/index.html index bae3af4..739d27d 100644 --- a/index.html +++ b/index.html @@ -11,16 +11,8 @@
Brain Games
- Wordle + Wordle
- - From 2d3b05e570b4238f18aa7cf8942818b86a9bbe4e Mon Sep 17 00:00:00 2001 From: AdamJCavanaugh <47431642+AdamJCavanaugh@users.noreply.github.com> Date: Sat, 15 Feb 2025 14:14:06 -0500 Subject: [PATCH 2/2] add todo about console logging --- wordle/game.js | 1 + 1 file changed, 1 insertion(+) diff --git a/wordle/game.js b/wordle/game.js index 6f8b5ef..01632e0 100644 --- a/wordle/game.js +++ b/wordle/game.js @@ -8,6 +8,7 @@ class Game { startGame() { this.currentWord = WordChecker.giveNewWord() + //TODO remove eventually console.log(this.currentWord) this.currentAttempts = 0; this.guessedWords = [];