create id javascript code example
Example 1: random id js
var ID = function () {
return '_' + Math.random().toString(36).substr(2, 9);
};
Example 2: create element javascript with id
var btn = document.createElement('div');
btn.setAttribute("id", "div1");
Example 3: javascript generate unique id
function randomId(): string {
const uint32 = window.crypto.getRandomValues(new Uint32Array(1))[0];
return uint32.toString(16);
}
Example 4: js generate id
var id = "id" + Math.random().toString(16).slice(2)
Example 5: generate id js
Math.floor(Math.random() * 100)