forked from thinkswell/javascript-mini-projects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
38 lines (32 loc) · 1.38 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
const words = ['seat', 'pen', 'broad', 'vapor', 'ocean',
'red', 'plate', 'late', 'that', 'ring', 'swim', 'shown',
'path', 'law', 'list', 'hard', 'plate', 'block', 'two',
'pupil', 'were', 'lot', 'pay', 'would', 'tired', 'dull',
'mud', 'sky', 'grew', 'hard', 'ill', 'frame',
'sport', 'did', 'many', 'been', 'page', 'year', 'trail',
'earth', 'are', 'while', 'off', 'town', 'doing', 'size',
'steel', 'sale', 'swam', 'put', 'zero', 'week', 'mill',
'past', 'aside', 'her', 'cent', 'box', 'fuel', 'block',
'those', 'late', 'sun', 'map', 'silk', 'lady', 'meant',
'still', 'shine', 'range', 'loud', 'fox', 'gate', 'slide',
'each', 'nails', 'flag', 'exist', 'door', 'luck', 'down',
'poem', 'depth', 'press', 'crowd', 'herd', 'drink', 'worry',
'dried', 'dig', 'new', 'rest', 'play', 'win', 'strong'];
function getPassword () {
const chars = '0123456789!@#$%&';
const clength = chars.length;
let password = '';
while (password.length < 20) {
password = password.concat(randomWord(chars.length));
password = password.concat(chars[randomNumber(clength)]);
}
password = password.substring(0, 16);
document.getElementById('password').value = password;
}
function randomNumber (l) {
return Math.floor(Math.random() * l);
}
function randomWord () {
const number = randomNumber(words.length);
return words[number];
}