Skip to content

Instantly share code, notes, and snippets.

@Nutrox
Created January 14, 2011 05:18
Show Gist options
  • Save Nutrox/779208 to your computer and use it in GitHub Desktop.
Save Nutrox/779208 to your computer and use it in GitHub Desktop.
AS3 - Random capital letter.
const CHR:Array = [
"A","B","C","D","E","F","G","H","I","J","K","L","M",
"N","O","P","Q","R","S","T","U","V","W","X","Y","Z"
];
const CHRLEN:Number = CHR.length;
function getRandom():String {
return CHR[ CHRLEN * Math.random() >> 0 ];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment