createPassword = (n) => n==0 ? "" : String.fromCharCode(33+Math.floor(Math.random()*93)) + createPassword(n-1); console.log( createPassword(8) );
小文字と大文字と数字が入って8文字以上のパスワードって何がいいと思う?
createPassword = (n) => n==0 ? "" : String.fromCharCode(33+Math.floor(Math.random()*93)) + createPassword(n-1);console.log( createPassword(8) );
Pa55w0rd
Googleに作ってもらえ