Skip to content

Instantly share code, notes, and snippets.

@jeevan-vj
Created May 26, 2020 12:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeevan-vj/03c8fd79d18faebb08fe95d56bc70691 to your computer and use it in GitHub Desktop.
Save jeevan-vj/03c8fd79d18faebb08fe95d56bc70691 to your computer and use it in GitHub Desktop.
Generate GUID jn JS
var guid = function () {
var id = '';
var i;
var random;
for (i = 0; i < 32; i++) {
random = Math.random() * 16 | 0;
if (i === 8 || i === 12 || i === 16 || i === 20) {
id += '-';
}
id += (i === 12 ? 4 : (i === 16 ? (random & 3 | 8) : random)).toString(16);
}
return id;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment