Advertisement
Guest User

Untitled

a guest
Sep 4th, 2015
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var item = prompt("go:");
  2.  
  3. var getReview = function (movie) {
  4.     switch (movie) {
  5.         case "Toy Story 2":
  6.             console.log("Great story. Mean prospector");
  7.             break;
  8.         case "Finding Nemo":
  9.             console.log("Cool animation, and funny turtles.");
  10.             break;
  11.         case "The Lion King":
  12.             console.log("Great songs.");
  13.             break;
  14.         default:
  15.             console.log("I dont know");
  16.             break;
  17.        
  18.        
  19.         }
  20. };
  21.  
  22. getReview (item);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement