1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| function restartQuiz() {
console.log("Restarting quiz...");
currentQuestion = 0;
score = 0;
usedQuestions = [];
allQuestionsCopy = [...allQuestions];
clearTimeout(timer);
const startButton = document.getElementById("startButton");
if (startButton) {
startButton.style.display = "block";
}
const quizElement = document.getElementById("quiz");
if (quizElement) {
quizElement.style.display = "none";
}
const categoriesElement = document.getElementById("categories");
if (categoriesElement) {
categoriesElement.style.display = "block";
}
}
document.getElementById("startButton").addEventListener("click", startQuiz);
document.getElementById("restartButton").addEventListener("click", restartQuiz);
displayCategories(); |
Partager