Answers for "get random id javascript"

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
2

js random id

Math.random().toString(36).slice(2);
Posted by: Guest on December-09-2020
0

get random id javascript

let ID = (length = 6) => {
	// new Date() will return current time
  	// getTime() method returns the number of milliseconds* since the Unix Epoch.
	// -length to get last items on string
	return new Date().getTime().toString().slice(-length);
}
Posted by: Guest on August-03-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language