Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created April 3, 2018 18:07
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 parzibyte/cdd88e37951438894de965caae89f138 to your computer and use it in GitHub Desktop.
Save parzibyte/cdd88e37951438894de965caae89f138 to your computer and use it in GitHub Desktop.
function fiesta(animal, platillo) {
return animal.charAt(animal.length - 1) === platillo.charAt(platillo.length - 1) && animal.charAt(0) === platillo.charAt(0);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment