Skip to content

Instantly share code, notes, and snippets.

@reMekElek
reMekElek / annotated.js
Created August 14, 2011 09:07 — forked from 140bytes/LICENSE.txt
140byt.es -- Click ↑↑ fork ↑↑ to play!
function(
a, // {Number}: random string length
b, // : internal variable: result
c // : internal variable: char code
){
for (
b = ''; // result
a--; // random string length (arguments[0])
)
b += String.fromCharCode(( // http://www.w3schools.com/jsref/jsref_fromcharcode.asp