/breakout

A simple breakout game

Primary LanguageJavaScript

Table of Contents

breakout

A basic breakout game from a Mozilla tutorial. The goal was to convert the Mozilla tutorial to use modern Javascript. I began with converting var with const and let to scope the variables to where they're needed and prevent accidental reassignements that you may see with var as the project scales. Afterwords, I transitioned functions to be more object oriented to allow for reusability.

Play the game here!

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.

Installation

  1. Clone the respository
git clone https://github.com/alexbarksdale/breakout
  1. Open index.html in the dist folder

Acknowledgments