Still waiting for the New York Times to send me a bogus takedown notice
Automatically convert guess to lowercase
Saksham Mittal 2022-04-05
parent e280212 · commit 3a2471f
-rw-r--r--script.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/script.js b/script.js
index 1a0b2b9..a1871bd 100644
--- a/script.js
+++ b/script.js
@@ -48,6 +48,7 @@ function addGuessDisplay(answer, guess, len, hint) {
function checkAnswer(event, answer, len, wordlist) {
event.preventDefault();
+ input.value = input.value.toLowerCase();
if (!exit) {
if (wordlist.includes(input.value)) {