Skip to content

Instantly share code, notes, and snippets.

@FremyCompany
Created March 14, 2016 08:24
Show Gist options
  • Save FremyCompany/a5e3f248c8c5e4a09741 to your computer and use it in GitHub Desktop.
Save FremyCompany/a5e3f248c8c5e4a09741 to your computer and use it in GitHub Desktop.
This file has been truncated, but you can view the full file.
//
// 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