Created
November 27, 2014 03:42
-
-
Save jacksonhoose/80edbb8fd3e5fafaccf6 to your computer and use it in GitHub Desktop.
alphabet
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
alphabet = function(charStart, charStop) { | |
charStart = charStart || 97; | |
charStop = charStop || 122; | |
var alphabet = []; | |
for(; charStart <= charStop; charStart++) | |
alphabet.push(String.fromCharCode(charStart)) | |
return alphabet; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment