Selbst oder dieses JavaScript
// this
class User {
constructor(name){
this.name = name;
}
greet(){
console.log(`Hi ${this.name}`); // Usage of this in function
}
}
I_Like_Cats__