“bom gerador de senha” Respostas de código

gerador de senhas

function CreatePassword(PassLenght) {
    const Lenght = parseInt(PassLenght)
   	const Charecters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
    let Password = "";
    for (var i = 0, n = Charecters.length; i < Lenght; ++i) { Password += Charecters.charAt(Math.floor(Math.random() * n)); }
    console.log(Password)
    return Password;
}

CreatePassword(18)
Undefined

bom gerador de senha

this doesn't work
Prickly Polecat

Respostas semelhantes a “bom gerador de senha”

Perguntas semelhantes a “bom gerador de senha”

Procure respostas de código populares por idioma

Procurar outros idiomas de código