Skip to content

Instantly share code, notes, and snippets.

@jnx
Created March 14, 2012 08:08
Show Gist options
  • Save jnx/2034994 to your computer and use it in GitHub Desktop.
Save jnx/2034994 to your computer and use it in GitHub Desktop.
GUID Generator
function guidGenerator() {
var S4 = function() {
return (((1+Math.random())*0x10000)|0).toString(16).substring(1);
};
return (S4()+S4()+"-"+S4()+"-"+S4()+"-"+S4()+"-"+S4()+S4()+S4());
}
// How to use it:
guidGenerator();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment