amyscotteng / quizgame

A simple and fun quiz game that takes place in the browser console

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Project Name

Quiz Game

Table of contents

General info

A simple and fun quiz game that takes place in the browser console

Technologies

  • JavaScript

Code Examples

A small section of the JS in this project:

Question.prototype.showQuestion = function() {
    console.log(this.quest);
    
    for (var i = 0; i < this.answers.length; i++) {
        console.log(i + ': ' + this.answers[i]);
    }
}  

Features

  • Just a fun game to play in the browser console :)

To-do list:

  • Make a fully functioning game that users can play in their browser instead of the browser console

Status

Project is: In progress due to potential improvements

Contact

Amy Scott

About

A simple and fun quiz game that takes place in the browser console


Languages

Language:JavaScript 100.0%