Underscore.js and guid function
Join the DZone community and get the full member experience.
Join For FreeUnderscore library comes with the uniqueId() function that generates globally unique IDs to use in code. But it was not enough for my Backbone models as I needed the IDs to be unique across invocations and users, i.e. something like UUID.
I have been using this code snippet to generate pseudo unique IDs for some time. Since it’s a utility function and it made lots of sense to move it to Underscore itself. Here’s how I did it.
_.mixin({ guid : function(){ 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); }); } });
Once the above code is in place, then creating a unique ID is as simple as calling _.guid().
Published at DZone with permission of Veera Sundar, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Trending
-
How to Submit a Post to DZone
-
How to LINQ Between Java and SQL With JPAStreamer
-
Extending Java APIs: Add Missing Features Without the Hassle
-
An Overview of Kubernetes Security Projects at KubeCon Europe 2023
Comments