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