A small business wants to keep track of its employees and the computers that they use. Each employee is assigned to a department, and they each get assigned a computer when they join the company.
- Build arrays of objects that represent Employees, Departments, and Computers.
- Assign every resource a unique
id
property. - Assign each employee to a department using a foreign key.
- Assign each employee a computer using a foreign key.
Once your data is normalized, use your DOM skills to display a card for each employee. It should display the employee name, the name of their department, and which computer they are using
git clone https://github.com/Megraohoh/smallBusiness
cd smallBusiness
npm install
http-server -p 8080
This will show in your browser at:
http://localhost:8080