Skip to content

Instantly share code, notes, and snippets.

@phucat
Created July 3, 2013 06:54
Show Gist options
  • Save phucat/5915952 to your computer and use it in GitHub Desktop.
Save phucat/5915952 to your computer and use it in GitHub Desktop.
Unique id generator
// unique id generator
function generateId(){
var S4 = function () {
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