Presta atención porque en esta reseña hallarás la contestación que buscas.
Ejemplo 1: 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);;
Ejemplo 2: js identificación aleatoria
Math.random().toString(36).slice(2);
Ejemplo 3: javascript genera una identificación única
functionuuidv4()return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g,function(c)var r = Math.random()*16);
console.log(uuidv4());
Recuerda difundir este ensayo si te ayudó.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)