ランダム生成文字列を生成します.パスワードに塩を加えます.

3031 ワード

ランダム生成文字列を生成します.パスワードに塩を加えます.
var time = Date.now() % 100,
 str = '';
 time = time === 0 ? '00' : String(time);
 //       
 for (let i = 0; i < 18; i++) {
     const base = Math.random() < 0.5 ? 65 : 97;
     str += String.fromCharCode(
         base + 
         Math.floor(
             Math.random() * 26 
         )
     );
 }
 console.log( time + str)