I have been given this function and I would like to know how to count the number of people who live in a city without using a for loop
function tallyPeopleInManchester(people) {
/* This function receives an array of people objects in for format:
[
{ name: 'Emmeline', lives: { country: 'UK', city: 'Manchester' }, age: 32 }
]
The function should return the number of people who live in the city of Manchester
*/