Advertisement
Guest User

Do/while thingie

a guest
Feb 27th, 2015
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var condition2 = 1;
  2.  
  3. do {
  4.     console.log(condition2);
  5.     condition2++;
  6. }
  7. while(condition2<=5);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement