Posts by Robotrol • 33 points
2 posts
-
2
votes2
answers6045
viewsQ: Delay Javascript
I need to spin a loop for every 2 seconds, as I can do ? for(var i = 0; i <= 5; i++) { console.log(i); }…
javascriptasked Robotrol 33 -
1
votes1
answer339
viewsQ: Increment variable with loop for and while together
Hello I’m using a while loop in my PHP application, but I need to increment a variable named ( $i ) but stop incrementing when I get the amount of records stored in the variable ( $Qtde ), as I can…