JSFiddle - React, Tailwind, and code Playground
HTML
<script>
var talk = document.getElementsByTagName('div');
</script>
<div>
<script>talk[0].text('Hello World!');</script>
</div>
<div>
<script>talk[1].text('How are you?');</script>
</div>
<div>
<script>talk[2].text('Im not bad myself');</script>
</div>
JavaScript
// head
Object.prototype.text = function (content) {
var contentOut = this.innerHTML = content;
return contentOut;
};