Skip to content

Instantly share code, notes, and snippets.

@ikasoba
Last active April 5, 2022 06:38
Show Gist options
  • Save ikasoba/b82835629469c902d23c9f3d125009ef to your computer and use it in GitHub Desktop.
Save ikasoba/b82835629469c902d23c9f3d125009ef to your computer and use it in GitHub Desktop.
generate characters
const genChrs = (f,t)=>f<t ? String.fromCharCode(f++) + genChrs(f,t) : String.fromCharCode(f++)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment