Ensure your Visual Studio Code application is up to date, and that you have the ESLint extension installed and enabled.
Run the commands below inside your Projects
folder.
git clone git@github.com:MCRcodes/javascript-basics-express.git
cd your-project-folder-name
npm install
🚨 Important!
This exercise makes use of your previous javascript-basics
code. Copy the files from that project's src/
folder into a new lib/
directory in this repository's src
directory. You should end up with the following file structure in this project:
src
├── app.js
└── lib
├── arrays.js
├── booleans.js
├── numbers.js
├── objects.js
└── strings.js
You can run tests with the npm test
command.
When you're finished, be sure to rewrite this one so it's more specific to your project.