Which of them is not the looping structures in JavaScript? for while for which do while Clear selection code example
Example: do while loop in javascript
do {
text += "The number is " + i;
i++;
}
while (i < 10);
do {
text += "The number is " + i;
i++;
}
while (i < 10);