Write a function named getDevelopers
that receives an Array of employees as parameter.
Each employee has the following props:
name
- a stringjob
- one of the following values: developer, designer, managerage
- a numberThe function should return a new Array with all the employees that are developers.
employees
=