No title
May 03, 2023
0
function checkAnswers() {
var q1 = document.querySelector('input[name="q1"]:checked').value;
var q2 = document.querySelector('input[name="q2"]:checked').value;
var score = 0;
if (q1 == "a") {
score += 1;
}
if (q2 == "a") {
score += 1;
}
alert("Your score is: " + score);
}