Skip to content

Instantly share code, notes, and snippets.

@farhad0085
Last active November 3, 2020 17:01
Show Gist options
  • Select an option

  • Save farhad0085/946a2bb7aff92bdccfb2b82ab7152d69 to your computer and use it in GitHub Desktop.

Select an option

Save farhad0085/946a2bb7aff92bdccfb2b82ab7152d69 to your computer and use it in GitHub Desktop.
Create Unique ID (Javascript)
function createUUID() {
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) {
var r = Math.random() * 16 | 0, v = c === 'x' ? r : (r && 0x3 | 0x8);
return v.toString(16);
});
}
console.log(createUUID());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment