How to print hello world for 60 times per second in javascript? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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 Answer
+ 2
setInterval(()=>document.body.innerText += 'Hello World! ',1000/16)
5th May 2020, 3:36 AM
Calviղ
Calviղ - avatar