Никак не могу понять почему в строке присвоения this.id = 120 браузер ругается. Что не так с this?
class Proba {
constructor(){
this.id;
}
anim () {
function go () {
this.id = 120;
console.log(this.id);
}
go();
}
}
let proba = new Proba();
proba.anim();