We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0771b8 commit e5a2925Copy full SHA for e5a2925
README.md
@@ -509,8 +509,8 @@ class Manager {
509
510
function showEmployeeList(employee: Developer | Manager) {
511
employee.forEach((employee) => {
512
- const expectedSalary = developer.calculateExpectedSalary();
513
- const experience = developer.getExperience();
+ const expectedSalary = employee.calculateExpectedSalary();
+ const experience = employee.getExperience();
514
const extra = employee.getExtraDetails();
515
516
const data = {
0 commit comments