Guest User

Untitled

a guest
Nov 20th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width">
  6. <title>JS Bin</title>
  7. </head>
  8. <body>
  9.  
  10. <script id="jsbin-javascript">
  11. // Write your code below
  12.  
  13. var favoriteMovie = "Star wars"
  14. var moviePhrase;
  15.  
  16.  
  17.  
  18. switch(favoriteMovie){
  19.  
  20. case "jaws":
  21. moviePhrase = "You're gonna need a bigger boat.";
  22. break;
  23.  
  24. case "shining":
  25. moviePhrase = "All work and no play games Jack a dull boy.";
  26. break;
  27.  
  28. case "star wars":
  29. moviePhrase ="Do. Or do not. There is no try.";
  30. break;
  31.  
  32. case "forrestg gump":
  33. moviePhrase = " Life was like a box of chocolates";
  34. break;
  35.  
  36. case "back to the future":
  37. moviePhrase = "Where we're going, we don't need roads.";
  38. break;
  39.  
  40. default:
  41. moviePharse = "Great Movie Choice";
  42.  
  43. }
  44. </script>
  45.  
  46.  
  47.  
  48. <script id="jsbin-source-javascript" type="text/javascript">// Write your code below
  49.  
  50. var favoriteMovie = "Star wars"
  51. var moviePhrase;
  52.  
  53.  
  54.  
  55. switch(favoriteMovie){
  56.  
  57. case "jaws":
  58. moviePhrase = "You're gonna need a bigger boat.";
  59. break;
  60.  
  61. case "shining":
  62. moviePhrase = "All work and no play games Jack a dull boy.";
  63. break;
  64.  
  65. case "star wars":
  66. moviePhrase ="Do. Or do not. There is no try.";
  67. break;
  68.  
  69. case "forrestg gump":
  70. moviePhrase = " Life was like a box of chocolates";
  71. break;
  72.  
  73. case "back to the future":
  74. moviePhrase = "Where we're going, we don't need roads.";
  75. break;
  76.  
  77. default:
  78. moviePharse = "Great Movie Choice";
  79.  
  80. }
  81.  
  82.  
  83.  
  84.  
  85.  
  86. </script></body>
  87. </html>
Add Comment
Please, Sign In to add comment