How to Make a Basic JavaScript Quiz

Making a game with JavaScript can be fun and satisfying as well as a bit of a puzzle. The code in the this article is one way of making a game using JavaScript. Once you know the basics, feel free to adapt and play around with it. Set up...

Part 1 of 5:

Setting Up

  1. Picture 1 of How to Make a Basic JavaScript Quiz
    Set up your programming environment. You will need a text editing program to write your code in. You can write it in a notepad document but you will probably want an editor designed for programming such as Notepad++ (Windows), Atom (Mac) or Notepad (Linux). However any basic text editor does work.
  2. Picture 2 of How to Make a Basic JavaScript Quiz
    Create the files you need. You will need two files: one in HTML that is read by the browser and one in JavaScript that is the game.
  3. Picture 3 of How to Make a Basic JavaScript Quiz
    Set up your files and folders. Because you only need two files, you don't need any sort of complex filing system. As long as the two files are in the same level of the same folder it will work. So save both of your files in the same place.
    1. To save as html add a .html extension. Us a .js extension for the JavaScript file.Set up code in your files. The JavaScript file requires no setting up but the HTML does. In your HTML document add the following code:
       <html> <head> <title>Page Nametitle> <script src="quiz.js">script> head> <body> body> html> 
    2. This is the basic set up for almost any page in HTML.
      1. defines the code as HTML to the browser.
      2. tells the browser that everything in that section is written in HTML unless specified otherwise.
      3. is a section that holds information about the page such as the title.
      4. is the name that shows up in search results and the name on the tab.
Update 05 March 2020
Category

System

Mac OS X

Hardware

Game

Tech info

Technology

Science

Life

Application

Electric

Program

Mobile