Skip to content

Instantly share code, notes, and snippets.

@strobemonkey
Created March 23, 2011 21:51
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save strobemonkey/884101 to your computer and use it in GitHub Desktop.
Save strobemonkey/884101 to your computer and use it in GitHub Desktop.
gimme a guid
var guid = function(){
return 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'.replace(/[x]/g, function(c) {
var r = Math.random()*16|0, v = c == 'x' ? r : (r&0x3|0x8);
return v.toString(16);
}).toUpperCase();
};
console.log(guid());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment