Skip to content

Instantly share code, notes, and snippets.

@shamil
Forked from jcxplorer/uuid.js
Created November 26, 2012 15:52
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save shamil/4148906 to your computer and use it in GitHub Desktop.
Save shamil/4148906 to your computer and use it in GitHub Desktop.
UUID v4 generator in JavaScript (RFC4122 compliant)
function uuid() {
var uuid = "", i, random;
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;
}
@chris-findlay
Copy link

&3|8 === |8

@chris-findlay
Copy link

chris-findlay commented Jul 10, 2023

'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/x|y/g, match => (Math.random()*16 | (match === 'y' ? 8 : 0)).toString(16))

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment