mirror of
https://github.com/PlaceholderAPI/Javascript-Expansion.git
synced 2025-05-23 10:39:04 +00:00
8 lines
171 B
JavaScript
8 lines
171 B
JavaScript
function randomLetter() {
|
|
var start = "A".charCodeAt(0);
|
|
var random = Math.random() * 26;
|
|
|
|
return String.fromCharCode(start + Math.floor(random));
|
|
}
|
|
|
|
randomLetter(); |