JSFiddle - React, Tailwind, and code Playground
HTML
<div id="MyObject">hi</div>
JavaScript
Element.prototype.doSomething = function() {
alert(this.innerText);
}
document.getElementById('MyObject').doSomething();
<div id="MyObject">hi</div>
Element.prototype.doSomething = function() {
alert(this.innerText);
}
document.getElementById('MyObject').doSomething();