He jugado un poco con este código que esencialmente presiona automáticamente el botón de reinicio en el archivo html cuando la palabra se adivina correctamente, pero no puedo hacer que funcione, la identificación del botón se reinicia. Es un juego de adivinanzas, quiero que se reinicie automáticamente cuando se adivine la palabra. Los dos scripts $ son mi intento de hacer que esto funcione
get statusMessage() { if (this.status === 'playing'){ return `Nice try! The word was "${this.word.join('')}"` return `Guesses left: ${this.remainingGuesses}` } else if (this.status === 'failed') { streak.innerHTML = 0 return `Nice try! The word was "${this.word.join('')}"``` } else { streak.innerHTML ++ return 'Great work! You guessed the word!' $('#reset').trigger('click'); $('#reset').click(); } }$('#restablecer').clic(); funcionará si lo escribe antes de una declaración de devolución como esta:
else { streak.innerHTML ++ $('#reset').click(); return 'Great work! You guessed the word!' }