Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created November 16, 2016 15:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codecademydev/11877d75dc168d9d12f84f1f87da25ba to your computer and use it in GitHub Desktop.
Save codecademydev/11877d75dc168d9d12f84f1f87da25ba to your computer and use it in GitHub Desktop.
Codecademy export
var movie = prompt("Search for a movie review");
var getReview = function (movie) {
var movie
switch (movie) {
case "Toy Story 2":
return "Great story. Mean prospector";
break;
case "Finding Nemo":
return "Cool animation, and funny turtles";
break;
case "The Lion King":
return "Great songs";
break;
default:
return "I don't know";
};
};
getReview(movie);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment