0
how to make an infinite loop in JS? Как сделать бесконечный цикл в JS?
Я хочу сделать [секрет] и для этого мне нужен бесконечный цикл. Как мне его сделать? Как заставить var расти бесконечно? Когда ты нажимаешь на экран var увеличивается. Сначала 1,2,3 и так далее. I want to do [secret] and for this I need an infinite loop. How can I make it? How to make var grow infinitely? When you click on the screen and var increases. First 1,2,3 and so on.
3 Réponses
+ 1
for(var i=5;i>0;i++)
{
//dostuff
}
0
how to make var grow infinitely?
0
you cant just make a for loop goes forever unless its in a while loop and its condition should be always true.