We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cd35b47 + 31ebaa4 commit 0844d45Copy full SHA for 0844d45
public/project-files/word-masters.js
@@ -3,7 +3,7 @@ const ROUNDS = 6;
3
const letters = document.querySelectorAll(".scoreboard-letter");
4
const loadingDiv = document.querySelector(".info-bar");
5
6
-// I like to do an init function so I can use "await"
+// I like to do an async init function so I can use "await"
7
async function init() {
8
// the state for the app
9
let currentRow = 0;
@@ -31,7 +31,7 @@ async function init() {
31
letter;
32
}
33
34
- // use tries to enter a guess
+ // user tries to enter a guess
35
async function commit() {
36
if (currentGuess.length !== ANSWER_LENGTH) {
37
// do nothing
0 commit comments