TODO: Summary: a few succinct lines or paragraph.
TODO: Include optional sections here:
TODO:
Task: Complete the functions in index.js
and pass all tests specified in test/index.test.js
✅
TODO: Update/Replace Stretch Goals (see raw README to see tags for expanding section below)
💡 Challenge Yourself! (expand for stretch tips)
- Research & use different patterns. (Destructuring, move common code into reusable helper methods, functional programming techniques)
- Trade completed code with a peer:
- Pair program: Take turns (30-60 min.) working through a refactor. Talk through & optimize as needed.
- Trade code for feedback! (Example format: 3&1, 3 things that you liked and 1 to improve.)
- See how many tests you can pass/complete before Googling or asking for help.
- Time yourself. See if you can beat your own time starting over. Speed run!
- When you're finished, refactor & improve readability. Write up why it is improved.
3 options are included below.
The CodeSandbox option is fast & highly recommended.
1. Fastest Option
TODO: UPDATE CODESANDBOX LINK:
2. Local Setup Instructions: From Command Line
- Fork & clone to your local computer
cd
into your newly cloned repository- Install using
npm
- Run test command
git clone <insert your git clone url here>
cd <repo folder name>
npm install
npm run test:watch
#####
### Or without fs watching:
# npm test
NOTE: In local development, use the file watcher command: npm run test:watch
.
3. Local Setup Instructions: Run Tests in Browser
- Fork & clone to your local computer
cd
into your newly cloned repository- Install and Start using
npm
git clone <insert your git clone url here>
cd <repo folder name>
npm install
npm start
TODO: Add any tips here - remember to link in the table of contents above.