“réagir un générateur de chaîne aléatoire natif” Réponses codées

comment générer un caractère aléatoire à partir d'un tableau js

function makeid() {
  var text = "";
  var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";

  for (var i = 0; i < 5; i++)
    text += possible.charAt(Math.floor(Math.random() * possible.length));

  return text;
}

console.log(makeid());
Sleepy Shrike

réagir un générateur de chaîne aléatoire natif

function makeid() {
  var text = "";
  var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";

  for (var i = 0; i < 5; i++)
    text += possible.charAt(Math.floor(Math.random() * possible.length));

  return text;
}

console.log(makeid());
SIMON BALOI

réagir un générateur de chaîne aléatoire natif

const generateRandomString = (lenth) => {
      const char = 'AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz1234567890';
      const random = Array.from(
          {length: lenth},
          () => char[Math.floor(Math.random() * char.length)]
      );
      const randomString = random.join("");
      return setString(randomString);
  }
5504 Divyesh Barad

Réponses similaires à “réagir un générateur de chaîne aléatoire natif”

Questions similaires à “réagir un générateur de chaîne aléatoire natif”

Plus de réponses similaires à “réagir un générateur de chaîne aléatoire natif” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code