Skip to content

Instantly share code, notes, and snippets.

@manzaloros
Created July 24, 2021 18:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save manzaloros/8263d0ce431fa37b85b31a2faea9ad95 to your computer and use it in GitHub Desktop.
Save manzaloros/8263d0ce431fa37b85b31a2faea9ad95 to your computer and use it in GitHub Desktop.
Iterate over all lowercase letters
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