“Generar ID JS” 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

JS Generar ID

var id = "id" + Math.random().toString(16).slice(2)
Borma

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

Generar ID JS

Math.floor(Math.random() * 100)
//the bigger the number the bigger the output
Upset Unicorn

Respuestas similares a “Generar ID JS”

Preguntas similares a “Generar ID JS”

Más respuestas relacionadas con “Generar ID JS” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código