do while while do code example
Example 1: while loop
var i=1;
while(i<=10){
document.write(i + "<br>");
i++;}
Example 2: while
while True:
print("A period of time.")
# "we chatted for a while"
print("Similar: time spell stretch stint")
print("at the same time; meanwhile.")
# "he starts to draw. talking for a while"
"""
CONJUCTION :D
"""