DEV Community

Discussion on: Frontend interview - Questions I was asked

Collapse
 
antonijogalic profile image
Antonijo Galic

Using .filter for the second task

const output = () => {
  const male = people.filter(person => person.gender === 'male');
  const female = people.filter(person => person.gender === 'female');

  return { male: male, female: female };
};

output();
Enter fullscreen mode Exit fullscreen mode