JSFiddle - React, Tailwind, and code Playground

by Alexandru Gatea

HTML

<div id="test">something here</div>

JavaScript

let strToReplace = document.getElementById("test");
const newStr = "I am a Hacker!";

strToReplace.innerHTML = newStr;