Skip to content

Instantly share code, notes, and snippets.

@brianmriley
Created October 3, 2013 19:07
Show Gist options
  • Save brianmriley/6815266 to your computer and use it in GitHub Desktop.
Save brianmriley/6815266 to your computer and use it in GitHub Desktop.
JavaScript Simple GUID Generator
// internal function to generate a random number guid generation
var S4 = function() {
return (((1+Math.random())*0x10000)|0).toString(16).substring(1);
};
// generates a guid for adding items to array
var createGUID = function () {
return (S4() + S4() + "-" + S4() + "-4" + S4().substr(0,3) + "-" + S4() + "-" + S4() + S4() + S4()).toLowerCase();
};
var guid = createGUID();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment