JSFiddle - React, Tailwind, and code Playground
by Jon Kittell
HTML
<p id="results"></p>
<p id="results2"></p>
JavaScript
document.bgColor = "red";
alert("hello world!");
alert("hello again!");
document.getElementById("results").innerHTML = "Hello javascript";
document.getElementById("results2").innerHTML = "Another Hello!";