Advertisement
Guest User

Untitled

a guest
Nov 20th, 2017
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. var movies = [
  2. {
  3. title: "Puff the Magic Dragon",
  4. review: "Best movie ever!!"
  5. },
  6. {
  7. title: "Die Hard",
  8. review: "Yippie Kai !!"
  9. }
  10. ];
  11.  
  12. for(var moviesSuck = 0; moviesSuck < movies.length; moviesSuck++) {
  13. fill(84, 140, 209);
  14. textAlign(CENTER, CENTER);
  15. textSize(20);
  16. text(movies[moviesSuck].title, 200, 50 + moviesSuck * 50);
  17. textSize(12);
  18. text(movies[moviesSuck].review, 200, 70 + moviesSuck * 50);
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement