JSFiddle - React, Tailwind, and code Playground

by Vladymyr Shevchuk

JavaScript

const obj = {
  name: 'Batman',
  getName: () => {
  	return this.name;
  }
};

obj.getName();