“JavaScript Generador de identificación único” Código de respuesta

ID aleatorio 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);
};
Diz Andriana

JS ID aleatorio

Math.random().toString(36).slice(2);
Dotch

JavaScript Uniqie ID

function uuid() {
  return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
    var r = Math.random() * 16 | 0, v = c == 'x' ? r : (r & 0x3 | 0x8);
    return v.toString(16);
  });
}

var userID=uuid();//something like: "ec0c22fa-f909-48da-92cb-db17ecdb91c5" 
Grepper

JavaScript Generador de identificación único

/* unique id generator javascript */

const uuid = () => {
  const head = Date.now().toString();
  const tail = Math.random().toString().substr(2)
  
  return head + tail
}

uuid();
wardvisual

Respuestas similares a “JavaScript Generador de identificación único”

Preguntas similares a “JavaScript Generador de identificación único”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código