Skip to content

Instantly share code, notes, and snippets.

@chshouyu
Created October 31, 2013 08:12
Show Gist options
  • Save chshouyu/7245906 to your computer and use it in GitHub Desktop.
Save chshouyu/7245906 to your computer and use it in GitHub Desktop.
function S4() {
return (((1+Math.random())*0x10000)|0).toString(16).substring(1);
}
function NewGuid() {
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