JSFiddle - React, Tailwind, and code Playground
JavaScript
class User {
constructor (name) {
this.name = name;
this.getName = () => this.name;
}
}
const user = new User('John');
const getName = user.getName;
console.log(getName()); // John