Created
February 24, 2012 06:07
-
-
Save peregrinogris/1898239 to your computer and use it in GitHub Desktop.
The sentence, “The quick brown fox jumps over the lazy dog” uses every letter in the English language.
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
var phrase = "the quick brown fox jumps over the lazy dog" | |
alert(phrase.replace(/ /g,'').split('').sort().join('')) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment