JSFiddle - React, Tailwind, and code Playground
HTML
<ul id="alpha-list"></ul>
JavaScript
(function () {
var myList = document.getElementById("alpha-list"),
temp;
for (var i = 65; i < 90; i++) {
temp = "<li>##val##</li>";
temp = temp.replace("##val##", String.fromCharCode(i));
myList.innerHTML += temp;
}
})();