new Admin()
, весь этот код преобразуется в функцииclass User {
constructor() {
this.name = 'default'
this.getName()
}
getName() { console.log('User ' + this.name) }
}
class Admin extends User {
constructor() {
super()
this.name = 'admin'
this.getName()
}
getName() { console.log('Admin ' + this.name) }
}
new Admin()