Advertisement
KodingKid

Javascript While Loop - Basic Scripting #21

May 26th, 2021
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. a = 1;
  2. b = 2;
  3. while (a < b) {
  4.     text += "This message is now on loop!";
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement