From 93757c05101646d8496835488c198510fc6f18e2 Mon Sep 17 00:00:00 2001 From: Bhav Beri Date: Tue, 14 Nov 2023 22:58:42 +0530 Subject: [PATCH] Added Score keyword besides the score shown for each quiz --- assets/js/assessment_v2.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/js/assessment_v2.js b/assets/js/assessment_v2.js index 881101d4..65ab4c28 100644 --- a/assets/js/assessment_v2.js +++ b/assets/js/assessment_v2.js @@ -176,7 +176,7 @@ function showResults() { } }); // show number of correct answers out of total - resultsContainer.innerHTML = `${numCorrect} out of ${toatNum}`; + resultsContainer.innerHTML = `Score: ${numCorrect} out of ${toatNum}`; } populateQuestions();