From a3d05fe6561891d686633a0b084fcabdb780a969 Mon Sep 17 00:00:00 2001 From: wktr <94459237+WiktorProj@users.noreply.github.com> Date: Fri, 19 Jul 2024 19:48:24 +0200 Subject: [PATCH] I made a subpage!!!!!!! --- js_examples/index.html | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 js_examples/index.html diff --git a/js_examples/index.html b/js_examples/index.html new file mode 100644 index 0000000..2fef7a2 --- /dev/null +++ b/js_examples/index.html @@ -0,0 +1,40 @@ + + + +

JS Examples

+
    +
  1. +

    Random Characters

    + Here's the code: +
    + const r = [document.getElementById("random"), document.getElementById("random2")]; + setInterval(() => { + r.forEach(i => { + i.innerHTML = String.fromCharCode(Math.floor(Math.random()*512)); + }); + },25) +
    + It does this: + +
  2. +
+ + + + JS Examples + + + + + \ No newline at end of file