Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. var Color1 = "Blue... ";
  2. var Color2 = "Green... ";
  3. var Color3 = "Yellow... ";
  4.  
  5. var FavoriteColor = "This is my favorite color!";
  6. var SecondFavorite = "This is my second favorite color!";
  7. var LastFavorite = "This is my least favorite color!";
  8.  
  9.  
  10. for (i=0; i < 2; i++) {
  11. console.log(Color1 + FavoriteColor);
  12. console.log(Color2 + SecondFavorite);
  13. console.log(Color3 + LastFavorite);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement