Answers for "random id with js"

5

random id js

var ID = function () {
  // Math.random should be unique because of its seeding algorithm.
  // Convert it to base 36 (numbers + letters), and grab the first 9 characters
  // after the decimal.
  return '_' + Math.random().toString(36).substr(2, 9);
};
Posted by: Guest on July-22-2020
1

random id number nodejs

const crypto = require("crypto");

const id = crypto.randomBytes(16).toString("hex");

console.log(id); // => f9b327e70bbcf42494ccb28b2d98e00e
Posted by: Guest on May-16-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language