|
| 1 | +const wordList = ['apple', 'grape', 'mango', 'berry', 'peach', 'lemon', 'cherry', 'melon', 'plum', 'pear']; |
| 2 | +const word = wordList[Math.floor(Math.random() * wordList.length)]; |
| 3 | +const maxAttempts = 6; |
| 4 | +let attempts = 0; |
| 5 | + |
| 6 | +function createBoard() { |
| 7 | + const board = document.getElementById('board'); |
| 8 | + for (let i = 0; i < maxAttempts; i++) { |
| 9 | + const row = document.createElement('div'); |
| 10 | + row.className = 'row'; |
| 11 | + for (let j = 0; j < 5; j++) { |
| 12 | + const cell = document.createElement('div'); |
| 13 | + cell.className = 'cell'; |
| 14 | + row.appendChild(cell); |
| 15 | + } |
| 16 | + board.appendChild(row); |
| 17 | + } |
| 18 | +} |
| 19 | + |
| 20 | +function makeGuess() { |
| 21 | + const guessInput = document.getElementById('guessInput'); |
| 22 | + const guess = guessInput.value.toLowerCase(); |
| 23 | + guessInput.value = ''; |
| 24 | + |
| 25 | + if (guess.length !== 5) { |
| 26 | + document.getElementById('message').textContent = 'Please enter a 5-letter word.'; |
| 27 | + return; |
| 28 | + } |
| 29 | + |
| 30 | + if (attempts >= maxAttempts) { |
| 31 | + document.getElementById('message').textContent = `Sorry, you've run out of attempts. The word was: ${word}`; |
| 32 | + return; |
| 33 | + } |
| 34 | + |
| 35 | + const row = document.querySelectorAll('.row')[attempts]; |
| 36 | + const cells = row.querySelectorAll('.cell'); |
| 37 | + |
| 38 | + for (let i = 0; i < 5; i++) { |
| 39 | + cells[i].textContent = guess[i]; |
| 40 | + if (guess[i] === word[i]) { |
| 41 | + cells[i].classList.add('correct'); |
| 42 | + } else if (word.includes(guess[i])) { |
| 43 | + cells[i].classList.add('present'); |
| 44 | + } else { |
| 45 | + cells[i].classList.add('absent'); |
| 46 | + } |
| 47 | + } |
| 48 | + |
| 49 | + if (guess === word) { |
| 50 | + document.getElementById('message').textContent = 'Congratulations! You guessed the word correctly!'; |
| 51 | + return; |
| 52 | + } |
| 53 | + |
| 54 | + attempts++; |
| 55 | + if (attempts === maxAttempts) { |
| 56 | + document.getElementById('message').textContent = `Sorry, you've run out of attempts. The word was: ${word}`; |
| 57 | + } |
| 58 | +} |
| 59 | + |
| 60 | +createBoard(); |
0 commit comments