“JavaScript obtient un caractère aléatoire de String” Réponses codées

Char aléatoire javascript

const characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
function generateRandomCode(){
    let result = ""
    let charactersLength = characters.length;
    for ( var i = 0; i < 6 ; i++ ) {
        result += characters.charAt(Math.floor(Math.random() * charactersLength));
    }
    return result
}
UnAngeloCheSiChiamaTheKing

Javascript aléatoire d'alphabet

Math.random().toString(36).substr(2, 5);
McShanmukh

JavaScript obtient un caractère aléatoire de String

const array = [ 1, 2, 3, 4, 5, 6, 7, 8, 9 ];
const string = "abcdefghijklmnopqrstuvwxyz";

// random item from Array
console.log(array[Math.floor(Math.random() * array.length)]);

// random Char from String
console.log(string[Math.floor(Math.random() * string.length)]);
MattDESTROYER

Réponses similaires à “JavaScript obtient un caractère aléatoire de String”

Questions similaires à “JavaScript obtient un caractère aléatoire de String”

Plus de réponses similaires à “JavaScript obtient un caractère aléatoire de String” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code