I'm tired of this...

This commit is contained in:
Chloe Fontenot 🏳️‍⚧️ 2024-08-09 20:01:04 -05:00
parent 86effd1bab
commit dfebd007cf

View File

@ -193,7 +193,7 @@ function getMatchingPhrase(inputString, targetCharacter) {
} }
checkLoop(checkString); checkLoop(checkString);
console.log(checkString); console.log(checkString);
checkString.replace(/[^a-zA-Z0-9]/g, ''); checkString = checkString.replace(/[^a-zA-Z0-9]/g, '');
console.log(checkString); console.log(checkString);
checkLoop(checkString); checkLoop(checkString);
} }