-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsecret.js
34 lines (30 loc) · 800 Bytes
/
secret.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
function getSecret (){
/* Secret Script */
let sp = ""
const b = ["p", "p", "a", "n", "e"]
const a = ["j", "s", ".", "s", "e"]
const d = ["m", "a", "i", "l", "."]
const c = ["n", "8", "3", "@", "g"]
const m = ["m", "a", "i", "l", "t", "o", ":"]
const e = ["c", "o", "m"]
for (let i = 0; i < m.length; i++) {
sp += m[i];
}
for (let i = 0; i < a.length; i++) {
sp += a[i];
}
for (let i = 0; i < b.length; i++) {
sp += b[i];
}
for (let i = 0; i < c.length; i++) {
sp += c[i];
}
for (let i = 0; i < d.length; i++) {
sp += d[i];
}
for (let i = 0; i < e.length; i++) {
sp += e[i];
}
let change = document.getElementById("sposti");
change.setAttribute("href", sp);
}