Skip to content

Instantly share code, notes, and snippets.

@nayunhwan
Last active October 18, 2018 02:10
Show Gist options
  • Save nayunhwan/233481b5531312e5fb3866d3e74717ae to your computer and use it in GitHub Desktop.
Save nayunhwan/233481b5531312e5fb3866d3e74717ae to your computer and use it in GitHub Desktop.
Generate UUID - 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;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment