Skip to content

Instantly share code, notes, and snippets.

Created November 30, 2015 06:00
Show Gist options
  • Select an option

  • Save anonymous/8915d382d2e5e14236c7 to your computer and use it in GitHub Desktop.

Select an option

Save anonymous/8915d382d2e5e14236c7 to your computer and use it in GitHub Desktop.
http://www.freecodecamp.com/srkama 's solution for Bonfire: Confirm the Ending
// Bonfire: Confirm the Ending
// Author: @srkama
// Challenge: http://www.freecodecamp.com/challenges/bonfire-confirm-the-ending
// Learn to Code at Free Code Camp (www.freecodecamp.com)
function end(str, target) {
// "Never give up and good luck will find you."
// -- Falcor
return target===str.slice(target.length*-1);
}
end("Bastian", "n");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment