Created
March 14, 2016 08:24
-
-
Save FremyCompany/a5e3f248c8c5e4a09741 to your computer and use it in GitHub Desktop.
This file has been truncated, but you can view the full file.
This file contains hidden or 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
// | |
// TEST EVERY TWO-CHAR TO-LOWER/TO-UPPER COMBINATION | |
// | |
var arr = []; for(var i = 0; i<=256; i++) { for(var j = 0; j<=256; j++) { var str = String.fromCharCode(i)+String.fromCharCode(j); arr.push(str+str.toLowerCase()+str.toUpperCase()) } }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment