“gerar base aleatória 64 string js” Respostas de código

Código JS para gerar código base64 aleatório

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

gerar base aleatória 64 string js

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 randomString = getRandomString(16); //get random alphanumberic 16 char string
Mardax

Código JS para gerar código base64 aleatório

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

Respostas semelhantes a “gerar base aleatória 64 string js”

Perguntas semelhantes a “gerar base aleatória 64 string js”

Mais respostas relacionadas para “gerar base aleatória 64 string js” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código