Skip to content

Instantly share code, notes, and snippets.

@jogilvyt
Created April 8, 2021 12:54
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save jogilvyt/22f1628d4c2853df1113f8e28096fde0 to your computer and use it in GitHub Desktop.
Save jogilvyt/22f1628d4c2853df1113f8e28096fde0 to your computer and use it in GitHub Desktop.
function getTranslationMap(rhyme) {
const rhymes = {
"apples and pears": "Stairs",
"hampstead heath": "Teeth",
"loaf of bread": "Head",
"pork pies": "Lies",
"whistle and flute": "Suit",
};
return rhymes[rhyme.toLowerCase()] ?? "Rhyme not found";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment