How can I loop from A to Z? I\'d like to populate a select menu with the letters of the alphabet, eg
A &l
This answer demonstrates the nice idea that you do not need a hardcoded string. In short:
for (i = 65; i <= 90; i++) { arr[i-65] = String.fromCharCode(i).toLowerCase(); }