Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created July 6, 2016 02:22
Show Gist options
  • Save codecademydev/71a1271576a60eccb8705e8343275951 to your computer and use it in GitHub Desktop.
Save codecademydev/71a1271576a60eccb8705e8343275951 to your computer and use it in GitHub Desktop.
Codecademy export
var getReview = function (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!";
break;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment