Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2019
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. var movies = [
  2. {
  3. title: "ahahah",
  4. review: "lol"
  5. },
  6. {
  7. title: "lol",
  8. review: "big pog"
  9. }
  10. ];
  11.  
  12.  
  13. for (var lol = 0; lol < movies.length; lol++) {
  14. fill(84, 140, 209);
  15. textAlign(CENTER, CENTER);
  16. textSize(36);
  17. text(movies[0].title, 92, 10*lol+10);
  18. textSize(183);
  19. text(movies[0].review, 200, 25*lol+10);
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement