Skip to content

Instantly share code, notes, and snippets.

@jessiemestabrook
Created July 15, 2013 19:34
Show Gist options
  • Save jessiemestabrook/6002721 to your computer and use it in GitHub Desktop.
Save jessiemestabrook/6002721 to your computer and use it in GitHub Desktop.
Generate random hex number.
var numberOfDigits = 6,
code = "";
for (; code.length < numberOfDigits; code += Math.floor(Math.random()*16).toString(16)) {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment