- Go into your assingment folder, create the correctly numbered assignment directory, and cd into it.
cd ~/TIY/assignments
mkdir assignment-XX
cd assignment-XX
- Curl and unzip the assignment files
curl https://raw.githubusercontent.com/TIY-Charleston-Front-End-Engineering/Course-Guide/master/assignments/js-objects-basics/js-objects-basics.zip > js-objects-basics.zip
unzip js-objects-basics.zip
open index.html
- Write the functions for each exercise that make the tests pass. You will only be working in the files that are structured like so:
ex-00-someExercise.js
. You can see your output and
- Use
console.log
to inspect what is happening inside your functions
- Make sure you are always
return
a value from your functions