Quiz App

Create a quiz application

JavaScriptIntermediate
JavaScript
class Quiz {
    constructor(questions) { this.questions = questions; this.score = 0; this.current = 0; }
    answer(answer) { if(answer === this.questions[this.current].correct) this.score++; this.current++; }
    isComplete() { return this.current >= this.questions.length; }
    getScore() { return this.score; }
}

Output

// Quiz functionality

Quiz App manages quiz questions and scoring.