-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
188 lines (175 loc) · 5.85 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
let questionList = [
{
question: "What is the capital city of Canada?",
answer: [
{ text: "Toronto", correct: false },
{ text: "Ottawa", correct: true },
{ text: "Vancouver", correct: false },
{ text: "Montreal", correct: false },
],
},
{
question: "What is the largest country in the world by land area?",
answer: [
{ text: "Russia", correct: true },
{ text: "Canada", correct: false },
{ text: "China", correct: false },
{ text: "United States", correct: false },
],
},
{
question: "What is the smallest country in the world?",
answer: [
{ text: "Vatican City", correct: true },
{ text: "Monaco", correct: false },
{ text: "Nauru", correct: false },
{ text: "San Marino", correct: false },
],
},
{
question: "What is the tallest mountain in the world?",
answer: [
{ text: "Mount Everest", correct: true },
{ text: "K2", correct: false },
{ text: "Kangchenjunga", correct: false },
{ text: "Makalu", correct: false },
],
},
{
question: "What is the largest ocean in the world?",
answer: [
{ text: "Atlantic Ocean", correct: false },
{ text: "Indian Ocean", correct: false },
{ text: "Arctic Ocean", correct: false },
{ text: "Pacific Ocean", correct: true },
],
},
{
question: "What is the currency of Japan?",
answer: [
{ text: "Euro", correct: false },
{ text: "Yen", correct: true },
{ text: "Dollar", correct: false },
{ text: "Pound", correct: false },
],
},
{
question: "What is the currency of Mexico?",
answer: [
{ text: "Euro", correct: false },
{ text: "Peso", correct: true },
{ text: "Dollar", correct: false },
{ text: "Pound", correct: false },
],
},
{
question: "What is the largest planet in our solar system?",
answer: [
{ text: "Venus", correct: false },
{ text: "Mars", correct: false },
{ text: "Jupiter", correct: true },
{ text: "Saturn", correct: false },
],
},
{
question: "What is the capital city of Brazil?",
answer: [
{ text: "Sao Paulo", correct: false },
{ text: "Rio de Janeiro", correct: false },
{ text: "Brasilia", correct: true },
{ text: "Salvador", correct: false },
],
},
{
question: "What is the highest waterfall in the world?",
answer: [
{ text: "Angel Falls", correct: true },
{ text: "Niagara Falls", correct: false },
{ text: "Victoria Falls", correct: false },
{ text: "Iguazu Falls", correct: false },
],
},
{
question: "What is the largest desert in the world?",
answer: [
{ text: "Sahara Desert", correct: true },
{ text: "Arabian Desert", correct: false },
{ text: "Gobi Desert", correct: false },
{ text: "Mojave Desert", correct: false },
],
},
{
question: "What is the capital city of China?",
answer: [
{ text: "Beijing", correct: true },
{ text: "Shanghai", correct: false },
{ text: "Hong Kong", correct: false },
{ text: "Zhengzhou", correct: false },
],
},
];
let questions = document.getElementById('quizQuestion');
let answersBody = document.querySelector(".quizBoxBody");
let nextBtn = document.getElementById('quizNext');
let againBtn = document.getElementById('quizNext2');
let questionIndex = 0;
let userScore = 0;
function startQuiz() {
let qu = questionList[questionIndex].question;
let an = questionList[questionIndex].answer;
questions.innerText="";
questions.innerText = (questionIndex + 1) + "." + qu;
an.forEach(element => {
let myButton = document.createElement('button');
myButton.classList.add("quizButton", "quizAnswer");
if (element.correct == true) {
myButton.dataset.correct = element.correct;
} else {
myButton.dataset.correct = element.correct;
}
myButton.innerText = element.text;
answersBody.appendChild(myButton);
myButton.addEventListener('click', function () {
nextBtn.style.display = ("inline-block");
if (myButton.dataset.correct == "true") {
myButton.classList.add("trueClass");
userScore++;
} else {
myButton.classList.add("falseClass");
}
// important
Array.from(answersBody.children).forEach(button => {
if (button.dataset.correct == "true") {
button.classList.add("trueClass");
}
button.disabled = true;
});
})
});
}
startQuiz();
nextBtn.addEventListener('click', function () {
questionIndex++;
nextBtn.style.display = "none";
// important
while (answersBody.firstChild) {
answersBody.removeChild(answersBody.firstChild);
}
if (questionIndex == questionList.length) {
questions.innerHTML = `Your Score is : \t ${userScore}\t Out of : \t${questionList.length}`;
againBtn.style.display = "inline-block";
startAgin();
}
startQuiz();
})
function startAgin() {
againBtn.addEventListener('click', function () {
questionIndex = 0;
userScore=0;
againBtn.style.display="none";
while (answersBody.firstChild) {
answersBody.removeChild(answersBody.firstChild);
}
startQuiz();
})
}