Skip to content

Instantly share code, notes, and snippets.

@souhe
Created November 22, 2018 22:27
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 souhe/91470962dbc5e34a52bb3da06b1b10d6 to your computer and use it in GitHub Desktop.
Save souhe/91470962dbc5e34a52bb3da06b1b10d6 to your computer and use it in GitHub Desktop.
let getAnswer = (review, message) => {
switch(review) {
case 'Bad':
return 'That is sad that you think: ' + message;
case 'Neutral':
return 'Okay';
case 'Awesome':
return 'Yes yes yes!';
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment