чему равен был this в том месте где ее определили.
class X {
f() {
const x=this
setTimeout(() => console.log(x===this)) //true
}
}
x=this
const obj = {
y: ()=> console.log(x===this) //true
}
const x= this
setTimeout(() => console.log(this === x)) //true
class A extends B {}
То есть без всяких угловых скобок. Какую роль они здесь играют я не понимаю