I\'ve seen this in some JavaScript code but I don\'t get what it does.
for(;;){ //other code }
I\'m used to the for(i=0;i
for(i=0;i
In JavaScript, for (;;) { ... } just creates an infinite endless loop, which is almost exactly the same as:
for (;;) { ... }
while (true) { // ... }
or
do { // ... } while (true);