Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.
looping letters in javascript
I don't know personally but check out http://www.w3schools.com they might have something about that.
I'm not quite sure, but I think he wants to loop through different letters. There would be a couple of ways to do this, one would be to use a String.fromCharCode(int) function in a for loop.
String.fromCharCode(i) returns the character of the ascii value of i;
For example, String.fromCharCode(65) returns a capital A.
Stick this in a for loop, like so:
for (x = 65; x <= 81; x++)
{
document.write(String.fromCharCode(x));
}
</script>```
This would print every character from capital A to capital Q.
Another way to do it would be to make a string of all the characters you wish to loop through, then loop through every character in the String.charAt(int) method. This returns the character that is number int in the string, for example
```markup<script>
var chocka = "absdfty152634k";
for (i = 0; i < chocka.length; i++)
{
document.write(chocka.charAt(i));
}
</script>```
This loops through every character in the string Chocka and prints them.