“Générer un identifiant aléatoire” Réponses codées

id aléatoire 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

Générer un identifiant aléatoire

const randomID = Math.random().toString(36).substring(2)
thefazeelahmed

générer un identifiant unique

md5(uniqid(time()));
Zidane (Vi Ly - VietNam)

Générer un ID aléatoire

export function calcId() {
  const array = new Uint32Array(8);
  self.crypto.getRandomValues(array);

  for (var i = 0; i < 1; i++) {
    const id = array[4];
    //console.log(id);
    return id;
  }
}
Infy Loop

Générer un identifiant aléatoire

AssemAlert
Nutty Narwhal

Générer un identifiant aléatoire

AssemAlert
Nutty Narwhal

Réponses similaires à “Générer un identifiant aléatoire”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code