JSFiddle - React, Tailwind, and code Playground

by Desiree Guercio

HTML

<p id="demo">Display the result here.</p> 

<script>

var carName = "Volvo";
document.getElementById("demo").innerHTML = carName;

</script>