generate id in nodejs code example
Example 1: js generate id
var id = "id" + Math.random().toString(16).slice(2)
Example 2: random id number nodejs
const crypto = require("crypto");
const id = crypto.randomBytes(16).toString("hex");
console.log(id); // => f9b327e70bbcf42494ccb28b2d98e00e
Example 3: generate id js
Math.floor(Math.random() * 100)
//the bigger the number the bigger the output