Skip to content

Instantly share code, notes, and snippets.

@JoshBarr
Created June 3, 2015 19:06
Show Gist options
  • Save JoshBarr/4046a3e4aedc443d9b57 to your computer and use it in GitHub Desktop.
Save JoshBarr/4046a3e4aedc443d9b57 to your computer and use it in GitHub Desktop.
Quick UUID in JS
function uuid() {
var i, random;
var uuid = '';
for (i = 0; i < 32; i++) {
random = Math.random() * 16 | 0;
if (i === 8 || i === 12 || i === 16 || i === 20) {
uuid += '-';
}
uuid += (i === 12 ? 4 : (i === 16 ? (random & 3 | 8) : random)).toString(16);
}
return uuid;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment