create id using js code example
Example 1: create element javascript with id
var btn = document.createElement('div');
btn.setAttribute("id", "div1");
Example 2: js generate id
var id = "id" + Math.random().toString(16).slice(2)
Example 3: generate id js
Math.floor(Math.random() * 100)
//the bigger the number the bigger the output