Skip to content

Instantly share code, notes, and snippets.

@mrhm-dev
Created December 25, 2018 04:55
Show Gist options
  • Save mrhm-dev/34dac585697bfc283bb6214798b202d1 to your computer and use it in GitHub Desktop.
Save mrhm-dev/34dac585697bfc283bb6214798b202d1 to your computer and use it in GitHub Desktop.
A very simple implementation of UUID in Javascript
function create_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(create_UUID());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment