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?

5th May 2020, 3:32 AM
🐕Pradeep Simba 🐶
🐕Pradeep Simba 🐶 - avatar
1 Respuesta
+ 2
setInterval(()=>document.body.innerText += 'Hello World! ',1000/16)
5th May 2020, 3:36 AM
Calviղ
Calviղ - avatar