From aef20c97c62161be4a100027db96b105966050b4 Mon Sep 17 00:00:00 2001 From: Joshua Date: Tue, 30 Jan 2024 09:32:43 +0100 Subject: [PATCH] New changes --- html-quiz.html | 2 +- html-quiz.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/html-quiz.html b/html-quiz.html index ac15386..ac6746c 100644 --- a/html-quiz.html +++ b/html-quiz.html @@ -33,7 +33,7 @@

FE-quiz

-

Score: 0

+

Points: 0

A portrait that comically exaggerates a person's diff --git a/html-quiz.js b/html-quiz.js index 6093c2b..7da8ed9 100644 --- a/html-quiz.js +++ b/html-quiz.js @@ -113,7 +113,7 @@ choices.forEach((choice) => { const incrementScore = num => { score += num - scoreCounter.innerText = `Score: ${score}` + scoreCounter.innerText = `Points: ${score}` }