JSFiddle - React, Tailwind, and code Playground

by anoopsuda

JavaScript

var i = 0;
var alphs = ["a", "b", "c", "d", "e"];
var alphsLength = alphs.length;
alert(alphsLength);
for (i = 0; i < alphsLength; i++) {
  document.write(alphs[i] + "<br>");
}