Advertisement
Guest User

Untitled

a guest
Jun 24th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. for(var i = 0; i < 20; i++){
  2.     consoloe.log(i);
  3. }
  4.  
  5.  
  6. var bool = true;
  7. while(bool === true){
  8.     console.log("True!");
  9.     bool = false;
  10. }
  11.  
  12. var tacos = false;
  13. do {
  14.     console.log("Do it!");
  15. } while(tacos === true);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement