Posted By

inamorix on 01/09/08


Tagged

js


Versions (?)

uniqid


 / Published in: JavaScript
 

  1. uniqid = (function () {
  2. var id = 0; return function () { return id++; };
  3. })();

Report this snippet  

You need to login to post a comment.