| 50 | console.log(Person.favoriteSkill()) |
| 51 | |
| 52 | class Student extends Person { |
| 53 | constructor(firstName, lastName, age, country, city, gender) { |
| 54 | super(firstName, lastName, age, country, city) |
| 55 | this.gender = gender |
nothing calls this directly
no outgoing calls
no test coverage detected