JS Examples
Back to Homepage...
-
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: