Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save srkama/19e2de3c91aafa61f5c2 to your computer and use it in GitHub Desktop.
Save srkama/19e2de3c91aafa61f5c2 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