Skip to content

Instantly share code, notes, and snippets.

@gobwas
Created February 5, 2014 10:26
Show Gist options
  • Save gobwas/8820762 to your computer and use it in GitHub Desktop.
Save gobwas/8820762 to your computer and use it in GitHub Desktop.
Random hex number
function randomHex() {
return (((1<<24) * Math.random())|0).toString(16);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment