Skip to content

Instantly share code, notes, and snippets.

@wsky
Created November 16, 2012 08:51
Show Gist options
  • Save wsky/4085597 to your computer and use it in GitHub Desktop.
Save wsky/4085597 to your computer and use it in GitHub Desktop.
JavaScript GUID
var guid = function () {
function S4() {
return (((1 + Math.random()) * 0x10000) | 0).toString(16).substring(1);
}
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