Guest User

Untitled

a guest
May 21st, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. // rewrite the while loop as a for loop
  2. //var x = 9;
  3. //while (x >= 1) {
  4. // console.log("hello " + x);
  5. //x = x - 1;
  6. //}
  7.  
  8. for (var x =9; x >=1; x--){
  9. console.log("hello " + x);
  10. }
Add Comment
Please, Sign In to add comment