Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to create globally-unique identifiers in Javascript. I'm not sure what routines are available on all browsers, how "random" and seeded the built-in random number generator is, etc..

The GUID / UUID should be at least 32 characters and should stay in the ASCII range to avoid trouble when passing them around.

share|improve this question
5  
Yeah I Googled it already... I was hoping for answers that (a) didn't involve ActiveX, (b) perhaps involved something more than just the random number generator, like with seeding thereof. – Jason Cohen Sep 19 '08 at 20:09
3  
GUIDs when repesented as as strings are at least 36 and no more than 38 characters in length and match the pattern ^\{?[a-zA-Z0-9]{36}?\}$ and hence are always ascii. – AnthonyWJones Sep 19 '08 at 20:35
72  
Hear ye, hear ye! Let the central irony of SO be noted! For this page is currently the top google hit for the terms: javascript generate guid. – Daniel Earwicker Feb 21 '10 at 19:17
11  
and javascript guid (how i found it) – Mark Mar 15 '11 at 23:42
26  
For newcomers to the question, I recommend skipping the first answer (the accepted one) and going straight to the second one (which shows how to generate an rfc4122 version 4 compliant GUID). – BrainSlugs83 Jun 24 '12 at 23:31
show 5 more comments

25 Answers

up vote 357 down vote accepted

There have been a couple attempts at this. The question is: do you want actual GUIDs, or just random numbers that look like GUIDs? It's easy enough to generate random numbers. From http://note19.com/2007/05/27/javascript-guid-generator/ (after some clean-up for clarity's sake):

function s4() {
  return Math.floor((1 + Math.random()) * 0x10000)
             .toString(16)
             .substring(1);
};

function guid() {
  return s4() + s4() + '-' + s4() + '-' + s4() + '-' +
         s4() + '-' + s4() + s4() + s4();
}

However, note in the comments that such values are not genuine GUIDs. There's no way to generate real GUIDs in Javascript, because they depend on properties of the local computer that browsers do not expose. You'll need to use OS-specific services like ActiveX: http://p2p.wrox.com/topicindex/20339.htm Edit: not correct - RFC4122 allows random ("version 4") ids. See other answers for specifics.

Use:

var uuid = guid();
share|improve this answer
80  
Actually, the RFC allows for UUIDs that are created from random numbers. You just have to twiddle a couple of bits to identify it as such. See section 4.4. Algorithms for Creating a UUID from Truly Random or Pseudo-Random Numbers: rfc-archive.org/getrfc.php?rfc=4122 – Jason DeFontes Sep 19 '08 at 20:28
7  
@Cory: "x|0" is a shortcut for "Math.floor(x)" - i.e. It converts x to an int (necessary because Math.random() produces floats). And, yes, the rest of it is to ensure the returned string has leading zeroes. – broofa Feb 23 '11 at 18:03
7  
demo: jsfiddle.net/KTkAD – hyperslug Mar 31 '11 at 4:00
6  
In Chrome this code doesn't always generate a correct size GUID. Length varies between 35 and 36 – CDeutsch Sep 13 '12 at 21:38
6  
How can a so obviously wrong answer get so many upvotes? Even the code is wrong (no surprise, when you obviously know nothing about GUIDs), as there is not a 4 at the right position. en.wikipedia.org/wiki/Globally_unique_identifier – Dennis Krøger Jan 21 at 9:28
show 13 more comments

For an rfc4122 version 4 compliant solution, this one-liner(ish) solution is the most compact I could come up with.:

'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
    var r = Math.random()*16|0, v = c == 'x' ? r : (r&0x3|0x8);
    return v.toString(16);
});

E.g:

>>> 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {var r = Math.random()*16|0,v=c=='x'?r:r&0x3|0x8;return v.toString(16);});
"3bce4931-6c75-41ab-afe0-2ec108a30860"
share|improve this answer
61  
I think I like this better than my answer. – Kevin Hakanson Apr 13 '10 at 21:36
22  
Dang. That's some nice code. – Joel Anair Nov 25 '10 at 1:48
12  
Beautiful hack. – Sudhir Jonathan Feb 21 '11 at 6:11
8  
Is it safe to use this code to generated unique ids on the client, and then use those ids as primary keys to save objects on the server? – Muxa Apr 21 '11 at 7:04
11  
I posted a question about collisions stackoverflow.com/questions/6906916/… – Muxa Aug 2 '11 at 3:23
show 25 more comments

Here's some code based on RFC 4122, section 4.4 (Algorithms for Creating a UUID from Truly Random or Pseudo-Random Number).

function createUUID() {
    // http://www.ietf.org/rfc/rfc4122.txt
    var s = [];
    var hexDigits = "0123456789abcdef";
    for (var i = 0; i < 36; i++) {
        s[i] = hexDigits.substr(Math.floor(Math.random() * 0x10), 1);
    }
    s[14] = "4";  // bits 12-15 of the time_hi_and_version field to 0010
    s[19] = hexDigits.substr((s[19] & 0x3) | 0x8, 1);  // bits 6-7 of the clock_seq_hi_and_reserved to 01
    s[8] = s[13] = s[18] = s[23] = "-";

    var uuid = s.join("");
    return uuid;
}
share|improve this answer
This doesn't produce the dashes needed for c# to parse it into a System.Guid. It renders like this: B42A153F1D9A4F92990392C11DD684D2, when it should render like: B42A153F-1D9A-4F92-9903-92C11DD684D2 – Levitikon Oct 25 '11 at 16:24
2  
The ABNF from the spec does include the "-" characters, so I updated to be compliant. – Kevin Hakanson Oct 25 '11 at 22:40
5  
I personally hate the dashes, but to each their own. Hey that's why we're programmers! – chaiguy Jan 23 '12 at 16:20
1  
You should declare the array size beforehand rather than sizing it dynamically as you build the GUID. var s = new Array(36); – MgSam Mar 25 at 20:03
I think there's a very minor bug in the line that sets bits bits 6-7 of the clock_seq_hi_and_reserved to 01. Since s[19] is a character '0'..'f' and not an int 0x0..0xf, (s[19] & 0x3) | 0x8 will not be randomly distributed -- it will tend to produce more '9's and fewer 'b's. This only makes a difference if you care about the random distribution for some reason. – John Velonis Apr 18 at 15:35

There's a nice compact function for creating rfc4122-compliant random UUIDs posted on my blog at:

http://www.broofa.com/2008/09/javascript-uuid-function/

Math.uuid.js is small (~400bytes), and has no dependencies on other libs, so can drop into just about any JS project. It can be used to produce either RFC4122-compliant v4 (random) uuids, or more compact, non-standard IDs of arbitrary length and base. For example:

>>> Math.uuid() // RFC4122 v4 UUID
"4FAC90E7-8CF1-4180-B47B-09C3A246CB67"

>>> Math.uuid(17) // 17 digits, base 62 (0-9,a-Z,A-Z)
"GaohlDbGYvOKd11p2"

>>> Math.uuid(5, 10) // 5 digits, base 10
"84274"

>>> Math.uuid(8, 16) // 8 digits, base 16
"19D954C3"

P.S. That blog post also links to a test page that shows the number of possible UUIDs there are for a variety of arguments, and that includes a performance test for those that care about that sort of thing.

share|improve this answer
+1 Great script – James Westgate Jul 21 '11 at 10:29
7  
@broofa now maintains an updated version of this script node-uuid – JProgrammer Aug 23 '11 at 4:18

I really like how clean Broofa's answer is, but it's unfortunate that poor implementations of Math.random leave the chance for collision.

Here's a similar RFC4122 version 4 compliant solution that solves that issue by offsetting the first 13 hex numbers by a hex portion of the timestamp. That way, even if Math.random is on the same seed, both clients would have to generate the UUID at the exact same millisecond (or 10,000+ years later) to get the same UUID:

function generateUUID(){
    var d = new Date().getTime();
    var uuid = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
        var r = (d + Math.random()*16)%16 | 0;
        d = Math.floor(d/16);
        return (c=='x' ? r : (r&0x7|0x8)).toString(16);
    });
    return uuid;
};


Here's a fiddle to test.

share|improve this answer
3  
Bear in mind, new Date().getTime() is not updated every millisecond. I'm not sure how this affects the expected randomness of your algorithm. – chaiguy Mar 18 '12 at 17:27
Hmm actually I just did a test and it's not so bad as I thought. Maybe that's been improved since I last checked. – chaiguy Mar 18 '12 at 17:30
@chaiguy: Thanks for looking into that further. In regards to your first comment, the worst possible case is if the browser's timestamp remained constant for some reason. In that case this solution's effectiveness is equivalent to Broofa's solution. – Briguy37 Mar 19 '12 at 18:36
1  
That's good to know! Thanks for posting your work. – chaiguy Mar 19 '12 at 22:06

Here's a solution dated Oct. 9, 2011 from a comment by user jed at https://gist.github.com/982883:

UUIDv4 = function b(a){return a?(a^Math.random()*16>>a/4).toString(16):([1e7]+-1e3+-4e3+-8e3+-1e11).replace(/[018]/g,b)}

This accomplishes the same goal as the current highest-rated answer, but in 50+ fewer bytes by exploiting coercion, recursion, and exponential notation. For those curious how it works, here's the annotated form of an older version of the function:

UUIDv4 =

function b(
  a // placeholder
){
  return a // if the placeholder was passed, return
    ? ( // a random number from 0 to 15
      a ^ // unless b is 8,
      Math.random() // in which case
      * 16 // a random number from
      >> a/4 // 8 to 11
      ).toString(16) // in hexadecimal
    : ( // or otherwise a concatenated string:
      [1e7] + // 10000000 +
      -1e3 + // -1000 +
      -4e3 + // -4000 +
      -8e3 + // -80000000 +
      -1e11 // -100000000000,
      ).replace( // replacing
        /[018]/g, // zeroes, ones, and eights with
        b // random hex digits
      )
}
share|improve this answer
3  
Very cool! Although ... a real JS ninja would've included support for crypto.getRandomValues() ;) – broofa Oct 7 '11 at 13:21

A web service would be useful.

Quick Google found: http://www.hoskinson.net/GuidGenerator/

Can't vouch for this implementation, but SOMEONE must publish a bonafide GUID generator.

With such a web service, you could develop a REST web interface that consumes the GUID web service, and serves it through AJAX to javascript in a browser.

share|improve this answer
6  
I made, host and use this one: timjeanes.com/guid. It uses .NET to generate a new GUID and returns it without any additional fluff. It'll also work over JSONP. – teedyay Jun 2 '10 at 20:35

Here is a combination of the top voted answer, with a workaround for Chrome's collisions:

generateGUID = (typeof(window.crypto) != 'undefined' && 
                typeof(window.crypto.getRandomValues) != 'undefined') ?
    function() {
        // If we have a cryptographically secure PRNG, use that
        // http://stackoverflow.com/questions/6906916/collisions-when-generating-uuids-in-javascript
        var buf = new Uint16Array(8);
        window.crypto.getRandomValues(buf);
        var S4 = function(num) {
            var ret = num.toString(16);
            while(ret.length < 4){
                ret = "0"+ret;
            }
            return ret;
        };
        return (S4(buf[0])+S4(buf[1])+"-"+S4(buf[2])+"-"+S4(buf[3])+"-"+S4(buf[4])+"-"+S4(buf[5])+S4(buf[6])+S4(buf[7]));
    }

    :

    function() {
        // Otherwise, just use Math.random
        // http://stackoverflow.com/questions/105034/how-to-create-a-guid-uuid-in-javascript/2117523#2117523
        return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
            var r = Math.random()*16|0, v = c == 'x' ? r : (r&0x3|0x8);
            return v.toString(16);
        });
    };

On jsbin if you want to test it.

share|improve this answer

From good ol' wikipedia there's a link to a javascript implementation of UUID.

It looks fairly elegant, and could perhaps be improved by salting with a hash of the client's IP address. This hash could perhaps be inserted into the html document server-side for use by the client-side javascript.

UPDATE : The original site has had a shuffle, here is the updated version

share|improve this answer
1  
The link is dead. Can you provide an alternative? – Will Jan 12 '11 at 14:04
2  
Your wish is my command ;) – Dan Feb 16 '11 at 19:25
1  
This implementation is nice because unlike the answers above it also includes the timestamp which should improve uniqueness in browsers with a shoddy random number generator. – Dobes Vandermeer Sep 30 '11 at 0:17

Here is a totally non-compliant but very performant implementation to generate an ASCII-safe GUID-like unique identifier.

function generateQuickGuid() {
    return Math.random().toString(36).substring(2, 15) +
        Math.random().toString(36).substring(2, 15);
}

Generates 26 [a-z0-9] characters, yielding a UID that is both shorter and more unique than RFC compliant GUIDs. Dashes can be trivially added if human-readability matters.

Here are usage examples and timings for this function and several of this question's other answers. The timing was performed under Chrome m25, 10 million iterations each.

>>> generateQuickGuid()
"nvcjf1hs7tf8yyk4lmlijqkuo9"
"yq6gipxqta4kui8z05tgh9qeel"
"36dh5sec7zdj90sk2rx7pjswi2"
runtime: 32.5s

>>> GUID() // John Millikin
"7a342ca2-e79f-528e-6302-8f901b0b6888"
runtime: 57.8s

>>> regexGuid() // broofa
"396e0c46-09e4-4b19-97db-bd423774a4b3"
runtime: 91.2s

>>> createUUID() // Kevin Hakanson
"403aa1ab-9f70-44ec-bc08-5d5ac56bd8a5"
runtime: 65.9s

>>> UUIDv4() // Jed Schmidt
"f4d7d31f-fa83-431a-b30c-3e6cc37cc6ee"
runtime: 282.4s

>>> Math.uuid() // broofa
"5BD52F55-E68F-40FC-93C2-90EE069CE545"
runtime: 225.8s

>>> Math.uuidFast() // broofa
"6CB97A68-23A2-473E-B75B-11263781BBE6"
runtime: 92.0s

>>> Math.uuidCompact() // broofa
"3d7b7a06-0a67-4b67-825c-e5c43ff8c1e8"
runtime: 229.0s

>>> bitwiseGUID() // jablko
"baeaa2f-7587-4ff1-af23-eeab3e92"
runtime: 79.6s

>>>> betterWayGUID() // Andrea Turri
"383585b0-9753-498d-99c3-416582e9662c"
runtime: 60.0s

>>>> UUID() // John Fowler
"855f997b-4369-4cdb-b7c9-7142ceaf39e8"
runtime: 62.2s

Here is the timing code.

var r;
console.time('t'); 
for (var i = 0; i < 10000000; i++) { 
    r = FuncToTest(); 
};
console.timeEnd('t');
share|improve this answer

From sagi shkedy's technical blog:

function generateGuid() {
  var result, i, j;
  result = '';
  for(j=0; j<32; j++) {
    if( j == 8 || j == 12|| j == 16|| j == 20) 
      result = result + '-';
    i = Math.floor(Math.random()*16).toString(16).toUpperCase();
    result = result + i;
  }
  return result;
}

There are other methods that involve using an ActiveX control, but stay away from these!

EDIT: I thought it was worth pointing out that no GUID generator can guarantee unique keys (check the wikipedia article). There is always a chance of collisions. A GUID simply offers a large enough universe of keys to reduce the change of collisions to almost nil.

That being said, I think that the note19 solution posted by John Millikin is much more elegant that the one I found. Go with that.

share|improve this answer
4  
Note that this isn't a GUID in the technical sense, because it does nothing to guarantee uniqueness. That may or may not matter depending on your application. – Stephen Deken Sep 19 '08 at 20:07
Ditto to Stephen's response. If you need uniqueness, define it server side where hopefully to can get to a proper algorithm! – Ray Hayes Sep 19 '08 at 20:08
Yep, this is Not a valid GUID! – pdavis Sep 19 '08 at 20:11
No GUID is guaranteed to be unique... The universe of created keys is simply large enough to make collisions nearly impossible. – Prestaul Sep 19 '08 at 20:13
1  
A quick note about performance. This solution creates 36 strings total to get a single result. If performance is critical, consider creating an array and joining as recommended by: tinyurl.com/y37xtx Further research indicates it may not matter, so YMMV: tinyurl.com/3l7945 – Brandon DuRette Sep 22 '08 at 18:14
function guidGenerator() {
  var buf = new Uint16Array(8);
   window.crypto.getRandomValues(buf);
   var S4 = function(num) {
     var ret = num.toString(16);
     while(ret.length < 4){
       ret = "0"+ret;
     };
     return ret;
   };
  return (S4(buf[0])+S4(buf[1])+"-"+S4(buf[2])+"-4"+S4(buf[3]).substring(1)+"-y"+S4(buf[4]).substring(1)+"-"+S4(buf[5])+S4(buf[6])+S4(buf[7]));
}

Done with the proposed, and in Chrome, Firefox available, API for secure random numbers. I have not read the RFC, korpus taken from John Millikin.

EDIT: fixed so it adheres xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx format in the rfc.

share|improve this answer
Since I am writing a Chrome extension, this is the ticket. Thanks – slolife Oct 5 '11 at 23:28
On jsbin: jsbin.com/uqives/2 It's worth stating more explicitly that this doesn't work on IE. Didn't work for Firefox also in my test. – ripper234 Dec 12 '11 at 10:04
Thanks for trying it. I whipped it up for an chrome Extension. I did not check the facts I read on the Internt(tm) about firefox supporting it. It is also worth mentioning that is does not comply with the RFC, the random (Version 4) UUID should have two places with fixed values: en.wikipedia.org/wiki/… – sleeplessnerd Dec 12 '11 at 17:03

David Bau provides a much better, seedable random number generator at http://davidbau.com/archives/2010/01/30/random_seeds_coded_hints_and_quintillions.html

I wrote up a slightly different approach to generating UUIDs at http://blogs.cozi.com/tech/2010/04/generating-uuids-in-javascript.html

share|improve this answer
  // RFC 4122
  //
  // A UUID is 128 bits long
  //
  // String representation is five fields of 4, 2, 2, 2, and 6 bytes.
  // Fields represented as lowercase, zero-filled, hexadecimal strings, and
  // are separated by dash characters
  //
  // A version 4 UUID is generated by setting all but six bits to randomly
  // chosen values
  var uuid = [
    Math.random().toString(16).slice(2, 10),
    Math.random().toString(16).slice(2, 6),

    // Set the four most significant bits (bits 12 through 15) of the
    // time_hi_and_version field to the 4-bit version number from Section
    // 4.1.3
    (Math.random() * .0625 /* 0x.1 */ + .25 /* 0x.4 */).toString(16).slice(2, 6),

    // Set the two most significant bits (bits 6 and 7) of the
    // clock_seq_hi_and_reserved to zero and one, respectively
    (Math.random() * .25 /* 0x.4 */ + .5 /* 0x.8 */).toString(16).slice(2, 6),

    Math.random().toString(16).slice(2, 14)].join('-');
share|improve this answer
1  
I like this approach, but beware that it does not work properly in Chrome. The ".slice(2, 14)" portion only returns 8 characters, not 12. – jalbert Sep 14 '11 at 20:37

This create version 4 UUID (created from pseudo random numbers) :

function uuid()
{
   var chars = '0123456789abcdef'.split('');

   var uuid = [], rnd = Math.random, r;
   uuid[8] = uuid[13] = uuid[18] = uuid[23] = '-';
   uuid[14] = '4'; // version 4

   for (var i = 0; i < 36; i++)
   {
      if (!uuid[i])
      {
         r = 0 | rnd()*16;

         uuid[i] = chars[(i == 19) ? (r & 0x3) | 0x8 : r & 0xf];
      }
   }

   return uuid.join('');
}

Here is a sample of the UUIDs generated :

682db637-0f31-4847-9cdf-25ba9613a75c
97d19478-3ab2-4aa1-b8cc-a1c3540f54aa
2eed04c9-2692-456d-a0fd-51012f947136
share|improve this answer

It's just a simple AJAX call...

If anyone is still interested, here's my solution.

On the server side:

[WebMethod()]
public static string GenerateGuid()
{
    return Guid.NewGuid().ToString();
}

On the client side:

var myNewGuid = null;
PageMethods.GenerateGuid(
    function(result, userContext, methodName)
    {
        myNewGuid = result;
    },
    function()
    {
        alert("WebService call failed.");
    }
);
share|improve this answer
Your method is the only correct way, but the problem with it is that it's asynchronous, so you can't really use that. Besides, try doing that a few 100 to 1000 times, and you will crash IE (not Chrome and Firefox, though). Synchronous calls would we needed: Use JQuery, not MS-PageMethod JavaScript ! – Quandary Mar 30 '10 at 11:46
1  
You're right, called asynchronously this is not very useful. Ironically my original code does use jQuery to invoke this method synchronously. Here's an example: $.ajax({ async: false, type: 'POST', url: 'MyPage.aspx/GenerateGuid', contentType: 'application/json; charset=utf-8', data: '{}', success: function(data) { // data contains your new GUID }, failure: function(msg) { alert(msg); } }); – alekop Apr 5 '10 at 23:26
7  
Why do you need to make AJAX call if you are using ASP.NET? Just do <%= Guid.NewGuid().ToString() %> in aspx. – kape123 Jan 26 '12 at 1:02

Adjusted my own UUID/GUID generator with some extras here.

I'm using the following Kybos random number generator to be a bit more cryptographically sound.

Below is my script with the Mash and Kybos methods from baagoe.com excluded.

//UUID/Guid Generator
// use: UUID.create() or UUID.createSequential()
// convenience:  UUID.empty, UUID.tryParse(string)
(function(w){
  // From http://baagoe.com/en/RandomMusings/javascript/
  // Johannes Baagøe <baagoe@baagoe.com>, 2010
  //function Mash() {...};

  // From http://baagoe.com/en/RandomMusings/javascript/
  //function Kybos() {...};

  var rnd = Kybos();

  //UUID/GUID Implementation from http://frugalcoder.us/post/2012/01/13/javascript-guid-uuid-generator.aspx
  var UUID = {
    "empty": "00000000-0000-0000-0000-000000000000"
    ,"parse": function(input) {
      var ret = input.toString().trim().toLowerCase().replace(/^[\s\r\n]+|[\{\}]|[\s\r\n]+$/g, "");
      if ((/[a-f0-9]{8}\-[a-f0-9]{4}\-[a-f0-9]{4}\-[a-f0-9]{4}\-[a-f0-9]{12}/).test(ret))
        return ret;
      else
        throw new Error("Unable to parse UUID");
    }
    ,"createSequential": function() {
      var ret = new Date().valueOf().toString(16).replace("-","")
      for (;ret.length < 12; ret = "0" + ret);
      ret = ret.substr(ret.length-12,12); //only least significant part
      for (;ret.length < 32;ret += Math.floor(rnd() * 0xffffffff).toString(16));
      return [ret.substr(0,8), ret.substr(8,4), "4" + ret.substr(12,3), "89AB"[Math.floor(Math.random()*4)] + ret.substr(16,3),  ret.substr(20,12)].join("-");
    }
    ,"create": function() {
      var ret = "";
      for (;ret.length < 32;ret += Math.floor(rnd() * 0xffffffff).toString(16));
      return [ret.substr(0,8), ret.substr(8,4), "4" + ret.substr(12,3), "89AB"[Math.floor(Math.random()*4)] + ret.substr(16,3),  ret.substr(20,12)].join("-");
    }
    ,"random": function() {
      return rnd();
    }
    ,"tryParse": function(input) {
      try {
        return UUID.parse(input);
      } catch(ex) {
        return UUID.empty;
      }
    }
  };
  UUID["new"] = UUID.create;

  w.UUID = w.Guid = UUID;
}(window || this));
share|improve this answer

Simple JavaScript module as a combination of best answers in this thread.

var Guid = Guid || (function () {

var EMPTY = '00000000-0000-0000-0000-000000000000';

var _padLeft = function (paddingString, width, replacementChar) {
    return paddingString.length >= width ? paddingString : _padLeft(replacementChar + paddingString, width, replacementChar || ' ');
};

var _s4 = function (number) {
    var hexadecimalResult = number.toString(16);
    return _padLeft(hexadecimalResult, 4, '0');
};

var _cryptoGuid = function () {
    var buffer = new window.Uint16Array(8);
    window.crypto.getRandomValues(buffer);
    return [_s4(buffer[0]) + _s4(buffer[1]), _s4(buffer[2]), _s4(buffer[3]), _s4(buffer[4]), _s4(buffer[5]) + _s4(buffer[6]) + _s4(buffer[7])].join('-');
};

var _guid = function () {
    var currentDateMilliseconds = new Date().getTime();
    return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (currentChar) {
        var randomChar = (currentDateMilliseconds + Math.random() * 16) % 16 | 0;
        currentDateMilliseconds = Math.floor(currentDateMilliseconds / 16);
        return (currentChar === 'x' ? randomChar : (randomChar & 0x7 | 0x8)).toString(16);
    });
};

var create = function () {
    var hasCrypto = typeof (window.crypto) != 'undefined',
        hasRandomValues = typeof (window.crypto.getRandomValues) != 'undefined';
    return (hasCrypto && hasRandomValues) ? _cryptoGuid() : _guid();
};

return {
    newGuid: create,
    empty: EMPTY
};})();

Usage:

Guid.newGuid()

"c6c2d12f-d76b-5739-e551-07e6de5b0807"

Guid.empty

"00000000-0000-0000-0000-000000000000"

share|improve this answer

JavaScript project on GitHub - https://github.com/LiosK/UUID.js

UUID.js The RFC-compliant UUID generator for JavaScript.

See RFC 4122 http://www.ietf.org/rfc/rfc4122.txt.

Features Generates RFC 4122 compliant UUIDs.

Version 4 UUIDs (UUIDs from random numbers) and version 1 UUIDs (time-based UUIDs) are available.

UUID object allows a variety of access to the UUID including access to the UUID fields.

Low timestamp resolution of JavaScript is compensated by random numbers.

share|improve this answer

The better way:

function(
  a,b                // placeholders
){
  for(               // loop :)
      b=a='';        // b - result , a - numeric variable
      a++<36;        // 
      b+=a*51&52  // if "a" is not 9 or 14 or 19 or 24
                  ?  //  return a random number or 4
         (
           a^15      // if "a" is not 15
              ?      // genetate a random number from 0 to 15
           8^Math.random()*
           (a^20?16:4)  // unless "a" is 20, in which case a random number from 8 to 11
              :
           4            //  otherwise 4
           ).toString(16)
                  :
         '-'            //  in other cases (if "a" is 9,14,19,24) insert "-"
      );
  return b
 }

Minimized:

function(a,b){for(b=a='';a++<36;b+=a*51&52?(a^15?8^Math.random()*(a^20?16:4):4).toString(16):'-');return b}
share|improve this answer

For those wanting an rfc4122 version 4 compliant solution with speed considerations (few calls to Math.random()):

function UUID() {
    var nbr, randStr = "";
    do {
        randStr += (nbr = Math.random()).toString(16).substr(2);
    } while (randStr.length < 30);
    return [
        randStr.substr(0, 8), "-",
        randStr.substr(8, 4), "-4",
        randStr.substr(12, 3), "-",
        ((nbr*4|0)+8).toString(16), // [89ab]
        randStr.substr(15, 3), "-",
        randStr.substr(18, 12)
        ].join("");
}

The above function should have a decent balance between speed and randomness.

share|improve this answer

Check this out if you are generating random GUIDs in Google Chrome http://devoluk.com/google-chrome-math-random-issue.html

share|improve this answer

There is a jQuery plugin that handles Guid's nicely @ http://plugins.jquery.com/project/GUID_Helper

jQuery.Guid.Value() Returns value of internal Guid. If no guid has been specified, returns a new one (value is then stored internally).

jQuery.Guid.New() Returns a new Guid and sets it's value internally.

jQuery.Guid.Empty() Returns an empty Guid 00000000-0000-0000-0000-000000000000.

jQuery.Guid.IsEmpty() Returns boolean. True if empty/undefined/blank/null.

jQuery.Guid.IsValid() Returns boolean. True valid guid, false if not.

jQuery.Guid.Set() Retrns Guid. Sets Guid to user specified Guid, if invalid, returns an empty guid.

share|improve this answer

Fastest GUID/UUID generator method according to RFC4122 standards.

Million executions of this implementation takes just 32.5 seconds, which is the fastest i've ever seen in a browser (the only solution without loops/iterations).

The function is as simple as:

function guid() {
    function _p8(s) {
        var p = (Math.random().toString(16)+"000000000").substr(2,8);
        return s ? "-" + p.substr(0,4) + "-" + p.substr(4,4) : p ;
    }
    return _p8() + _p8(true) + _p8(true) + _p8();
}

To test the performance, you can run this code:

console.time('t'); 
for (var i = 0; i < 10000000; i++) { 
    guid(); 
};
console.timeEnd('t');

I'm sure most of you will understand what I did there, but maybe there is at least one person that will need an explanation:

The algorithm:

  • The Math.random() function returns a decimal number between 0 and 1 with 16 digits after the decimal fraction point (for example 0.4363923368509859).
  • Then we take this number and convert it to a string with base 16 (from the example above we'll get 0.6fb7687f).
    Math.random().toString(16).
  • Then we cut off the 0. prefix (0.6fb7687f => 6fb7687f) and get a string with eight hexadecimal characters long.
    (Math.random().toString(16).substr(2,8).
  • Sometimes the Math.random() function will return shorter number (for example 0.4363), due to zeros at the end (from the example above, actually the number is 0.4363000000000000). That's why i'm appending to this string "0000000000" (a string with nine zeros) and then cutting it off with substr() function to make it nine characters exactly (filling zeros to the right).
  • The reason of adding exactly nine zeros is because of the worse case scenario, which is when the Math.random() function will return exactly 0 or 1 (probability of 1/10^16 for each one of them). That's why we needed to add nine zeros to it ("0"+"000000000" or "1"+"0000000000"), and then cutting it off from the second index (3rd character) with a length of eight characters. For the rest of the cases, the addition of zeros will not harm the result because it is cutting it off anyway.
    Math.random().toString(16)+"000000000").substr(2,8).

The assembly:

  • The GUID is in the following format XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX.
  • I divided the GUID into 4 pieces, each piece divided into 2 types (or formats): XXXXXXXX and -XXXX-XXXX.
  • Now I'm building the GUID using these 2 types to assemble the GUID with call 4 pieces, as follows: XXXXXXXX -XXXX-XXXX -XXXX-XXXX XXXXXXXX.
  • To differ between these two types, I added a flag parameter to a pair creator function _p8(s), the s parameter tells the function whether to add dashes or not.
  • Eventually we build the GUID with the following chaining: _p8() + _p8(true) + _p8(true) + _p8(), and return it.

Link to this post on my blog

Enjoy! :-)

share|improve this answer

I know this topic is old but if you really wanted to create a GUID you could obvioulsy do it without straight javascript. You could cause a page expiration every load and create a GUID on the server side then populate that into a javascript variable at page run time. Just an idea.

share|improve this answer
Somewhat harshly judged. This is a simple solution to a fairly complicated problem. To be honest, I am probably going to use a solution similar to this. The question with all of the javascript is how manay Guid's do you need to generate? If you really need hundreds, then go for it, but most problems require just one or two, so why not pre-generate them during your server side page load? – Adam Jun 30 '12 at 21:19
1  
@Adam simply because some applications are client side only with no server side scripting support, and because the OP asked for it. Second guessing someone doesn't solve anything. Personally I'm using an ajax call in an app to get new GUIDs, but my requirement is different from the OPs. – agrothe Jul 3 '12 at 18:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.