This week's assignment focuses on Arrays, Objects, and Callback Functions. Follow the instructions below to complete the tasks.
-
Set Up Your Project:
- Fork this repository.
- Clone your forked version to your computer.
- Create a new branch:
git checkout -b <your-firstname-lastname>
- Start coding on this branch.
-
Complete the Tasks:
- Open the
arrays.js
,callbacks.js
,objects.js
file. - Complete all problems related to arrays, objects, and callback functions.
- Skip stretch problems until all required tasks are finished.
- Open the
-
Commit and Push Your Work:
- Save your progress regularly:
git add . git commit -m "Completed task #" git push -u origin <your-branch-name>
- Save your progress regularly:
-
Submit Your Assignment:
- Once done, submit your repository link through the student portal.
- Revisit the stretch problems after finishing the required tasks.
- Challenge yourself with advanced problems using array methods like
.map()
,.filter()
, and.reduce()
.
Good luck! 🚀