Each subfolder inside this project corresponds to a Learning Objective in your learning platform, and includes an index.html
file containing practice problems and a solution.html
file containing the solutions.
- To watch a video demonstration of these instructions, click HERE.
- Fork this repository and clone it to a location in your computer you can find easily.
- Install the Live Server extension for VSCode.
In order to work on a particular set of practice problems:
- Open the repository folder in VSCode.
- Locate the subfolder containing the practice problems you wish to work on (E.G.
m2-1-2-getting_properties_from_an_object
). - Open
index.html
in your VSCode text editor by left-clicking on the file in VSCode's file Explorer. - Open
index.html
in your Chrome browser, by right-clicking the file in VSCode's file Explorer and selecting "Open in Live Server". - Code in VSCode, and watch your changes play out in the browser's console (Ctrl + Shift + J on Windows, Cmd + Option + J on MacOS).
If you get stuck:
- Check the
solution.html
file for the practice problems you are working on.
(No code, refer to your learning platform)
- Declaring an Object
- Getting Properties From an Object
- Setting and Deleting Properties
- Declaring an Array Literal
- Accessing Elements in an Array
- Setting Elements in an Array
- Working With Array Lengths
- Splitting a String Into an Array
- Looping Over Array Indices
- Looping Over Object Properties
- Using the For Loop