This commit is contained in:
LinlyBoi
2023-12-04 14:09:07 +02:00
parent 00e86714b4
commit 42d5f47497

View File

@@ -98,3 +98,21 @@ const questions = [
generateQuestion(6, 6, 36, 6, 14, 21),
]
console.log(questions);
function setQ(n) {
var question = Document.getElementById("question")
question.innerText = questions[n].title;
}
function nextQ() {
questionCounter++;
setQ(questionCounter);
if (questionCounter < questions.length)
}
function prevQ() {
}
function questionSubmit() {
}