Skip to content

Instantly share code, notes, and snippets.

@butaji
Created August 12, 2011 10:42
Show Gist options
  • Save butaji/1141841 to your computer and use it in GitHub Desktop.
Save butaji/1141841 to your computer and use it in GitHub Desktop.
JavaScript GUID generator
function S4() {
return (((1+Math.random())*0x10000)|0).toString(16).substring(1);
}
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