“Code JS pour générer du code de base64 aléatoire” Réponses codées

Code JS pour générer du code de base64 aléatoire

var string = "Hello folks how are you doing today?";
var encodedString = btoa(string); // Base64 encode the String
var decodedString = atob(encodedString); // Base64 decode the String
Grepper

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

Code JS pour générer du code de base64 aléatoire

function getRandomString(length) {
    var randomChars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
    var result = '';
    for ( var i = 0; i < length; i++ ) {
        result += randomChars.charAt(Math.floor(Math.random() * randomChars.length));
    }
    return result;
}
var randString = getRandomString(20);//get rand alphanumberic 20 char string
var randBase64String = btoa(randString); // Base64 encode the String
Friendly Hawk

Réponses similaires à “Code JS pour générer du code de base64 aléatoire”

Questions similaires à “Code JS pour générer du code de base64 aléatoire”

Plus de réponses similaires à “Code JS pour générer du code de base64 aléatoire” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code