JSFiddle - React, Tailwind, and code Playground
by dhoerster
HTML
<div id='source'>Hello</div>
JavaScript
var node = document.createTextNode(' there!');
var source = document.getElementById('source');
if(source) {
source.appendChild(node);
}