Skip to content

Instantly share code, notes, and snippets.

@teddykishi
Created March 7, 2016 13:44
Show Gist options
  • Save teddykishi/343f1cb963dfc79a04ba to your computer and use it in GitHub Desktop.
Save teddykishi/343f1cb963dfc79a04ba to your computer and use it in GitHub Desktop.
Console Art
var str = "", i = 10000; while(i){ str += Math.random() > .5 ? "1" : "0"; i--; }; str
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment