UUID 생성: 1밀리초 이상 떨어져 생성된 경우 100% 고유 function uuid(){ return Math.random().toString(36).substr(2)+(new Date()).getTime().toString(36); }
느린 웹개발자의 기억 파편
UUID 생성: 1밀리초 이상 떨어져 생성된 경우 100% 고유 function uuid(){ return Math.random().toString(36).substr(2)+(new Date()).getTime().toString(36); }