Skip to content

Instantly share code, notes, and snippets.

@egin10
Created November 30, 2019 02:48
Show Gist options
  • Save egin10/565f765d843c188a106928fb808f1c0e to your computer and use it in GitHub Desktop.
Save egin10/565f765d843c188a106928fb808f1c0e to your computer and use it in GitHub Desktop.
UUID Sample Generator in JS
function uuid(){
var dt = new Date().getTime();
var uuid = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
var r = (dt + Math.random()*16)%16 | 0;
dt = Math.floor(dt/16);
return (c=='x' ? r :(r&0x3|0x8)).toString(16);
});
return uuid;
}
console.log(uuid());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment