JSFiddle - React, Tailwind, and code Playground

by Luke Arrington

HTML

<html>
<body>
<p id="demo"></p>
</body>
<script>

var shortName = new Array ();

shortName[0] = new Array ('Alpha Alpha','City of Chicago');

shortName[1] = new Array ('5300','5500');

var text = "";

text += shortName[0][0] + shortName[1][0];

document.getElementById("demo").innerHTML = text;
</script>
</html>