Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
Well done!
You have completed Object-Oriented JavaScript: Challenge!
Instruction
Creating Class Files
Assignment:
Project file directory : Stage1-Step5
Inside the js directory, create the following files: Player.js, Token.js, Board.js, Space.js, and Game.js. Be sure to capitalize the names of the files, like you see here.
Inside each of the files, declare the associated class. Don't add any constructor methods, properties, or other methods to the class declarations yet.
Note:
There won't...