Skip to content

Instantly share code, notes, and snippets.

@infinnie
Last active May 15, 2018 02:02
Show Gist options
  • Save infinnie/25c450d4fc2d9726cade514aeef389c3 to your computer and use it in GitHub Desktop.
Save infinnie/25c450d4fc2d9726cade514aeef389c3 to your computer and use it in GitHub Desktop.
JavaScript generate something random
[...crypto.getRandomValues(new Uint8Array(8))].map(function (x) {
var t = x.toString(16);
return t.length === 2 ? t : "0" + t;
}).join("");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment