http://gothoxeo4g2yqa3ba27z3sigeprlwan3deogkejooe7zqccou6qgkvad.onion/hanumanum/clean-code-javascript
EmployeeTaxData is not a type of Employee class EmployeeTaxData extends Employee { constructor ( ssn , salary ) { super ( ) ; this . ssn = ssn ; this . salary = salary ; } // ... } Լավ՝ class EmployeeTaxData { constructor ( ssn , salary ) { this . ssn = ssn ; this . salary = salary ; } // ... } class Employee { constructor ( name , email ) { this . name = name ; this . email = email ; } setTaxData ( ssn , salary ) { this . taxData = new EmployeeTaxData ( ssn , salary ) ; } // ... } ⬆ վեր SOLID Single...