Created
July 24, 2021 18:27
-
-
Save manzaloros/8263d0ce431fa37b85b31a2faea9ad95 to your computer and use it in GitHub Desktop.
Iterate over all lowercase letters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for (let i = 0; i < 26; i += 1) { | |
const currentLetter = String.charCodeFrom(i + 97); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment