JS Examples

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