Skip to content

Instantly share code, notes, and snippets.

@fourdollars
Created January 5, 2010 09:34
Show Gist options
  • Save fourdollars/269274 to your computer and use it in GitHub Desktop.
Save fourdollars/269274 to your computer and use it in GitHub Desktop.
$(function() {
var num = Math.round(Math.random(new Date()) * 46) % 46;
if (num < 26) {
num = num + 65;
} else {
num = num % 26;
num = num + 97;
}
alert(String.fromCharCode(num));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment