20.getDevelopers

Write a function named getDevelopers that receives an Array of employees as parameter.

Each employee has the following props:

  • name - a string
  • job - one of the following values: developer, designer, manager
  • age - a number

The function should return a new Array with all the employees that are developers.

Example 1

Input

employees

=

Output