-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
94 lines (84 loc) · 2.37 KB
/
script.js
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
const quizdata=[
{
question : "1. Who is generally considered the inventor of the motor car?",
a: "Henry Ford",
b: "Karl Benz",
c: "Henry M. Leland",
correct:"b",
},
{
question : "2. The fear of insects is known as what? ",
a: "Entomophobia",
b: "Arachnophobia",
c: "Ailurophobia",
correct:"a",
},
{
question : "3. Which horoscope sign is a fish? ",
a: "Aquarius",
b: "Cancer",
c: "Pisces",
correct:"c",
},
{
question : "4. What is the largest US state (by landmass)? ",
a: "Texas",
b: "Alaska",
c: "California",
correct:"b",
},
{
question : "5. What city hosted the 2000 Olympic Games? ",
a: "Tokyo",
b: "Beijing",
c: "Sydney",
correct:"c",
},
];
const quiz = document.getElementById('quiz')
const answerEls = document.querySelectorAll('.answer')
const questionEl = document.getElementById('question')
const a_text = document.getElementById('a_text')
const b_text = document.getElementById('b_text')
const c_text = document.getElementById('c_text')
const submitbtn = document.getElementById('submit')
let currentQuiz=0
let score = 0
loadQuiz()
function loadQuiz(){
deselectAnswers()
const currentQuizData = quizdata[currentQuiz]
questionEl.innerText = currentQuizData.question
a_text.innerText=currentQuizData.a
b_text.innerText=currentQuizData.b
c_text.innerText=currentQuizData.c
}
function deselectAnswers(){
answerEls.forEach(answerEl => answerEl.checked = false)
}
function getSelected(){
let answer
answerEls.forEach(answerEl => {
if(answerEl.checked){
answer = answerEl.id
}
})
return answer
}
submitbtn.addEventListener('click', () => {
const answer = getSelected()
if(answer){
if (answer === quizdata[currentQuiz].correct){
score++
}
currentQuiz++
if(currentQuiz < quizdata.length){
loadQuiz()
}else{
quiz.innerHTML= `
<h2>You answered ${score}/${quizdata.length} questions correctly</h2>
<button onclick="location.reload()">Reload</button>
`
}
}
})