Skip to content

Instantly share code, notes, and snippets.

@fredyang
Last active December 16, 2015 15:39
Show Gist options
  • Save fredyang/5457169 to your computer and use it in GitHub Desktop.
Save fredyang/5457169 to your computer and use it in GitHub Desktop.
guid generation
// Generate four random hex digits.
function S4() {
return (((1+Math.random())*0x10000)|0).toString(16).substring(1);
};
// Generate a pseudo-GUID by concatenating random hexadecimal.
function guid() {
return (S4()+S4()+"-"+S4()+"-"+S4()+"-"+S4()+"-"+S4()+S4()+S4());
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment