Created
August 27, 2014 07:22
-
-
Save MaraScott/75dfafbaaf796434ab10 to your computer and use it in GitHub Desktop.
Name : generateAsciiList() - Language : JavaScript - type : function - Platform : generic - tag : ascii, encode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| for (var i=0; i<128; i++) { | |
| document.writeln ((i%32?'':'<p>') + i + ': ' + String.fromCharCode (i) + '<br>'); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment