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 b66083c commit 9cd974aCopy full SHA for 9cd974a
html/ProxyChoose.html
@@ -8,11 +8,11 @@ <h2>JavaScript Randomizer For a Variable</h2>
8
<script>
9
const lineReader = require('line-reader');
10
const rndInt = Math.floor(Math.random() * 4) + 1
11
-if (rndInt == 1) line = 1;
12
-if (rndInt == 2) line = 2;
13
-if (rndInt == 3) line = 3;
14
-if (rndInt == 4) line = 4;
15
- alert(line);
+if (rndInt == 1) text = 1;
+if (rndInt == 2) text = 2;
+if (rndInt == 3) text = 3;
+if (rndInt == 4) text = 4;
+ alert(text);
16
lineReader.eachLine('https://altify-chs.netlify.app/html/socks4.txt',(line,last)=>{
17
alert(line);
18
})
0 commit comments