In large organizations the data of employees can be handled by multiple people. New employees are added to the system, the HR department updates their roles and responsibilities etc...
Write a program to display the employee list in an organization. Use a timer callback with a delay of 2 seconds to display the employee list only after an employee is added to the list..
- Define a getEmployee function that iterates over the employees list and displays it. The employees must be displayed after a timeout of 1 second.β
- Define a function createEmployee that creates a new employee after 2 seconds, which takes an employee object and a callback(getEmployee). The callback will be executed once the employee object is added to the employees list.β.
- Make a call to the createEmployee function, pass the employee object and getEmployee as the callback.β
- Download and unzip the boilerplate code.
- Run the command
npm install
to install the dependencies. - Open the boilerplate code in VSCode to develop the solution.
- Write the code in the .js files present in src folder.
- Run the test scripts available under src/test by giving
npm run test
command in the terminal to test locally. - Refactor the solution to ensure all test cases are passing.
- Zip the solution code with the name same as assignment name..
- Upload the zipped solution for submission.