create unique d javascript code example
Example 1: javascript generate unique id
function randomId(): string {
const uint32 = window.crypto.getRandomValues(new Uint32Array(1))[0];
return uint32.toString(16);
}
Example 2: generate id js
Math.floor(Math.random() * 100)
//the bigger the number the bigger the output