looping in javascript is just like looping in Java. which loop makes u
desperate? your question should be more spesific. we can't understand what do u
mean
while (true condition){
your code here;
}
do {
your code here;
}while (true condition);
for (true condition){
your code here;
}