We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a68f248 commit 6cd1f94Copy full SHA for 6cd1f94
CWE-338/main.js
@@ -0,0 +1,7 @@
1
+const main = () => {
2
+ let password = ''
3
+ for (let i = 0; i < 8; i++) {
4
+ password += Math.floor(Math.random() * 10)
5
+ }
6
+ return password
7
+}
0 commit comments