JSFiddle - React, Tailwind, and code Playground

by Vladymyr Shevchuk

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