This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Objectives | |
// Our goal with these exercises is to use arrays, objects, and the fundamental building blocks of JS to query our data | |
// and make new assertions. From a list of people whose attributes we have, what conclusions can be drawn? | |
// Hint | |
// 1. The most important piece of data we will work with is the people array below. | |
// 2. Take a moment to think about the objects in the array. | |
// 3. Contemplate how we could sort people based on the data we have about them. | |
// 4. All functions we write in this exercise will take the people array as it's only argument |