Advertisement
Guest User

Untitled

a guest
Jul 29th, 2017
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. var movies = [
  2. {
  3. title: "In Bruges",
  4. rating: 5,
  5. hasWatched: true
  6. },
  7.  
  8. {
  9. title: "Frozen",
  10. rating: 4.5,
  11. hasWatched: false
  12. },
  13.  
  14. {
  15. title: "Mad Max Fury Road",
  16. rating: 5,
  17. hasWatched: true
  18. },
  19.  
  20. {
  21. title: "Les Miserables",
  22. rating: 3.5,
  23. hasWatched: false
  24. }
  25. ];
  26.  
  27. movies.forEach(function(movie) {
  28. if (movie.hasWatched == true) {
  29. var haveOrHaveNot = "have"
  30. }
  31. else {
  32. haveOrHaveNot = "have not"
  33. }
  34. console.log("You " + haveOrHaveNot + " seen " + "\""+movie.title+"\"" + " - " + movie.rating + " stars");
  35. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement