Pa55w0rd
Permalink | 記事への反応(0) | 10:03
ツイートシェア
小文字と大文字と数字が入って8文字以上のパスワードって何がいいと思う?
Googleに作ってもらえ
createPassword = (n) => n==0 ? "" : String.fromCharCode(33+Math.floor(Math.random()*93)) + createPassword(n-1);console.log( createPassword(8) );