admin管理员组文章数量:1340299
I want to create a function in my NodeJS application which generates unique 18 digit numbers. What I'm expecting is to get unique 18 digit numbers like below:
73306495056092753667
I thought of using the below logic, by bining Date.now() with Math.random():
Date.now()+""+Math.floor(Math.random()*10000000)
But in cases where my function is called exactly at the same millisecond, and if in the same cases, Math.random() returns the same value, the above logic wont return unique ID's.
In NodeJS/Javascript, is there any module like UUID which generates globally unique numerical values? Or can anyone help me create an algorithm that will generate unique ID's?
I want to create a function in my NodeJS application which generates unique 18 digit numbers. What I'm expecting is to get unique 18 digit numbers like below:
73306495056092753667
I thought of using the below logic, by bining Date.now() with Math.random():
Date.now()+""+Math.floor(Math.random()*10000000)
But in cases where my function is called exactly at the same millisecond, and if in the same cases, Math.random() returns the same value, the above logic wont return unique ID's.
In NodeJS/Javascript, is there any module like UUID which generates globally unique numerical values? Or can anyone help me create an algorithm that will generate unique ID's?
Share Improve this question edited May 7, 2020 at 5:38 codeandcloud 55.4k47 gold badges168 silver badges259 bronze badges asked May 7, 2020 at 5:02 Tony MathewTony Mathew 9101 gold badge13 silver badges44 bronze badges 4- You might want to look into how Mongo generates its ids (as an example). – ProgrammingLlama Commented May 7, 2020 at 5:03
- @John I checked that, Mongo generates alpha-numerical ids. What I want it strictly numerical – Tony Mathew Commented May 7, 2020 at 5:49
- I said how it generates its ids. I didn't say you should generate the same ids as Mongo. And it's alphanumeric because Mongo represents the number as hexadecimal. Anyway, it generates a 4-byte timestamp, a 5-byte random value, and a 3-byte incrementing counter. That way even if you generate 2 numbers at the exact same moment, you get two different ids. – ProgrammingLlama Commented May 7, 2020 at 8:18
-
Please note that hexadecimal is just a representation of binary data, and as such you could also interpret that same binary data as numbers, for example. The Mongo ID
507f1f77bcf86cd799439011
could also be written as24912482966938930280208240657
in decimal. – ProgrammingLlama Commented May 7, 2020 at 8:21
3 Answers
Reset to default 12Here is a solution using nanoid (npm install -S nanoid
):
const { customAlphabet } = require('nanoid')
const nanoid = customAlphabet('1234567890', 18)
console.log(nanoid()) // sample outputs => 455712511712968405, 753952709650782495
Try appending a random number between 10000 and 99999 to new Date().valueOf()
const numbers = [...Array(90000).keys()].map(n => n + 10000);
let filteredNumbers = numbers;
let timeStamp = new Date().valueOf();
let rand = 0;
const generateRandomNumber = _ => {
const currentTimeStamp = new Date().valueOf();
if (timeStamp === currentTimeStamp && rand !== 0) {
filteredNumbers = filteredNumbers.filter(n => n !== value)
} else {
timeStamp = currentTimeStamp;
filteredNumbers = numbers;
}
rand = filteredNumbers[Math.floor(Math.random() * filteredNumbers.length)];
return parseInt(new Date().valueOf() + "" + rand, 10);
};
document.querySelector('#generate')
.addEventListener('click', _ => {
const uuid = generateRandomNumber();
console.log(uuid);
});
<button id="generate">Generate UUID</button>
Exactly Same 18 Digits as my laravel Projects
Well In this case I Created that with 10 digiths Seconds + randomiser like 3+3+2 digits
Maybe It Kind of what @Naveen did
本文标签: javascriptgenerate 18 digit unique numberStack Overflow
版权声明:本文标题:javascript - generate 18 digit unique number - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743624184a2512019.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论