Created
May 14, 2021 11:20
-
-
Save codergautam/0a1f87625dc1462208ebf3307565b24a to your computer and use it in GitHub Desktop.
One liner for a array of alphabets in javascript
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
Array.from(Array(26)).map((e, i) => i + 65).map((x) => String.fromCharCode(x)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment