class Person { constructor(name) { this.name = name; } describe() { return "Person called " + this.name; } } class Employee extends Person { constructor(name, age) { super.constructor(name); this.title = age; } describe() { return super.describe() + " (" + this.age + ")"; } } let jane = new Employee('Cat', 22); jane.describe() можно ли вызвать jane.super.describe();