JSFiddle - React, Tailwind, and code Playground

by Vladymyr Shevchuk

JavaScript

const obj = {
  riba: 'IronMan',
  getName() {
    return this.riba;
  }
};

const getName = obj.getName;

console.log(getName());