As always: make a copy of this repository to commit changes to
-
Code academy skills from week 1
- Variables and data types
- Control Flow (excluding loops, focusing on if/else)
- Functions and scope
-
Week 1 assignment
- Review of our first assignment
- Forking
- Pull requests (turning in assignments)
- None of the 'PRO' (non-free) sections are assigned!
- Complete Units in the Course Academy Javascript coursework
- Arrays (5)
- Loops (6)
- OPTIONAL Iterators (7)
- Objects (8)
We're producing a simple map to help people find health centers in the Philadelphia area. Our application has a few goals. (Full instructions in the assignment's index.html)
- On application start, use
console.log
to show an array of arrays in which the first sub-array contains keys and the rest of the arrays contain the 'rows' of our data - All and only markers found within the zip code range from 19140 to 19149 should appear
- Each marker should have custom content that comes up in a dialog when clicked which tells us the location name
Some health centers offer dental services as well. Can you find a way to give centers that provide dental services a different icon than those that do not?