Здравствуйте
let app = document.getElementById('app');
class P1 {
constructor(name){
Object.setPrototypeOf(this,null);
this.name = name;
}
}
class P2 extends P1 {
constructor(name){
super(name);
}
getProto(){
return Object.getPrototypeOf(this);
}
}
let cl = new P2('Luca');
app.innerHTML = cl.getProto();
почему cl.getProto() не находится, но пишет "is not a function"?