Jump to content

User:B1KWikis/Javascript/hwa.js

From Wikipedia, the free encyclopedia
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
<script type="text/Javasctipt">
// HWA, Hello World Advanced
var AZ=new 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", " ");
//Creates the capital letters
var az=new 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", " ");
//Creates the lowercase letters
document.write(AZ[7],az[4],az[11],az[11],az[14],AZ[26],AZ[22],az[14],az[17],az[11],az[3])
//writes the text based on AZ and az
</script>

//Web address bar version
javascript:var AZ=new 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", " "); var az=new 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", " "); document.write(AZ[7],az[4],az[11],az[11],az[14],AZ[26],AZ[22],az[14],az[17],az[11],az[3])