JSFiddle - React, Tailwind, and code Playground
HTML
<p id="greenplanet">old</p>
JavaScript
function init() {
var planet = document.getElementById("greenplanet");
console.log(planet.innerHTML);
planet.innerHTML = "Red Alert: hit by phaser fire!";
}
init();