- Fork the assignment repo
- Clone your Fork to your machine
- Complete the lab
- Push your changes to your Fork
- Submit a Pull Request back to the assignment repo
- Paste a link to your Pull Request (not your fork!) on Canvas and submit
This lab will build on the skills that you've learned after your first couple weeks of programming in JavaScript! You will build a command line application that plays a text-based adventure game. Look here and here for a couple examples of the genre. Be creative with your app. Apps will be evaluated by the following criteria:
-
This project imports a special module called
readline-sync
that allows the user to enter input to the terminal -
The line at the top
const readline = require('readline-sync')
gives you access to this functionality -
Use the following line to get user input:
let yourVariableHere = readline.question("Enter your name: ")