Skip to content

Instantly share code, notes, and snippets.

View nnguyen150468's full-sized avatar

Nguyen Nguyen nnguyen150468

View GitHub Profile
// 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