8000 fixed code formatting · makeuseofcode/CAPTCHA-Validator@f5d77f1 · GitHub
[go: up one dir, main page]

Skip to content
8000

Commit f5d77f1

Browse files
committed
fixed code formatting
1 parent fa542ad commit f5d77f1

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

script.js

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,15 @@ let refreshButton = document.querySelector('#refreshButton');
1313

1414

1515
// alphaNums contains the characters with which you want to create the CAPTCHA
16-
let alphaNums = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9'];
16+
let alphaNums = ['A', 'B', 'C', 'D', 'E', 'F', 'G',
17+
'H', 'I', 'J', 'K', 'L', 'M', 'N',
18+
'O', 'P', 'Q', 'R', 'S', 'T', 'U',
19+
'V', 'W', 'X', 'Y', 'Z', 'a', 'b',
20+
'c', 'd', 'e', 'f', 'g', 'h', 'i',
21+
'j', 'k', 'l', 'm', 'n', 'o', 'p',
22+
'q', 'r', 's', 't', 'u', 'v', 'w',
23+
'x', 'y', 'z', '0', '1', '2', '3',
24+
'4', '5', '6', '7', '8', '9'];
1725
let emptyArr = [];
1826

1927
// This loop generates a random string of 7 characters using alphaNums

0 commit comments

Comments
 (0)
0