“Ładny generator haseł” Kod odpowiedzi

generator hasła

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

Ładny generator haseł

this doesn't work
Prickly Polecat

Odpowiedzi podobne do “Ładny generator haseł”

Pytania podobne do “Ładny generator haseł”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu