JSFiddle - React, Tailwind, and code Playground

by Vladymyr Shevchuk

JavaScript

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

obj.softBind(obj);