Skip to content

Commit

Permalink
Update script.js
Browse files Browse the repository at this point in the history
removed unnecessary log
  • Loading branch information
WetGato committed Dec 2, 2024
1 parent 334e806 commit f9e9c1c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion script.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,6 @@ function renderQuestionList() {
listItem.style.fontWeight = "bold";
}
if (quizGraded) {
console.log(quizGraded);
const isCorrect = userAnswers[index] === question.answer;
listItem.style.color = isCorrect ? "green" : "red";
listItem.innerText += isCorrect ? " ✅" : " ❌";
Expand Down

0 comments on commit f9e9c1c

Please sign in to comment.