Skip to content

Instantly share code, notes, and snippets.

@mariotacke
Created July 11, 2019 19:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mariotacke/beb163e3888eaef558ca07a807633fee to your computer and use it in GitHub Desktop.
Save mariotacke/beb163e3888eaef558ca07a807633fee to your computer and use it in GitHub Desktop.
const charset = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789@#$%&()/\\+<>';
const randomCharacter = charset[Math.floor(Math.random() * charset.length)];
outputContext.fillStyle = `rgb(${r},${g},${b})`;
outputContext.fillText(randomCharacter, x, y);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment