JSFiddle - React, Tailwind, and code Playground

HTML

<div id="MyObject">hi</div>

JavaScript

Element.prototype.doSomething = function() {
  alert(this.innerText);
}

document.getElementById('MyObject').doSomething();