0
How to print hello world for 60 times per second in javascript?
How can I print hello world for 60 times per second in javascript?
1 Respuesta
+ 2
setInterval(()=>document.body.innerText += 'Hello World! ',1000/16)
How can I print hello world for 60 times per second in javascript?