JSFiddle - React, Tailwind, and code Playground
HTML
<!Doctype>
<html>
<head></head>
<body>
<p id="demo"></p>
<p id="demo2"></p>
</body>
</html>
JavaScript
var text = "Hey";
var text2 = "How are you";
var text2 = text.concat(" ", text2);
document.getElementById("demo").innerHTML = text2;