PatrickFrankAIU / ITWEB220-2404A

Learning resources for students in ITWEB 220, term 2404A.
0 stars 0 forks source link

Exercise: Arrays of Objects #28

Open PatrickFrankAIU opened 3 months ago

PatrickFrankAIU commented 3 months ago

Using the array of objects included below, create the following functions:

Stretch Goal:

Array:

let employees = [
    { name: 'Pat', office: 'Miami', extension: 1305 },
    { name: 'Sandy', office: 'Miami', extension: 1302 },
    { name: 'Andrea', office: 'Atlanta', extension: 1403 },
];