JSFiddle - React, Tailwind, and code Playground

by johnsonjo4531

JavaScript

let name;

const div = document.createElement("div")

div.innerHTML = `Hello ${name}!`;

document.body.appendChild(div)