Skip to content

Commit aa1b07b

Browse files
author
dx-luna
committed
err pages
1 parent 9c2c600 commit aa1b07b

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

words.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
<script>
3+
let obj = {};
4+
[...Array(66666).keys()].forEach((e, key) => {
5+
if (key < 255) return;
6+
let val = String.fromCharCode(e);
7+
if (val == "$" || val == "_") return;
8+
try {
9+
eval("var " + val + "=1");
10+
obj[val] = {};
11+
} catch (e) {}
12+
});
13+
document.body.innerHTML = Object.keys(obj).join('')
14+
</script>

0 commit comments

Comments
 (0)