JSFiddle - React, Tailwind, and code Playground

by Vladymyr Shevchuk

JavaScript

const superman = {
	name: 'superman',
  getName () {
  	return this.name;
  }
};

const batman = {
	name: 'batman',
  getName () {
  	return this.name;
  }
};