Skip to content

Instantly share code, notes, and snippets.

@mijimoco
Created January 17, 2017 12:03
Show Gist options
  • Save mijimoco/490202af1c15e5a90be0968fb057371b to your computer and use it in GitHub Desktop.
Save mijimoco/490202af1c15e5a90be0968fb057371b to your computer and use it in GitHub Desktop.
Confirm the Ending
function confirmEnding(str, target) {
// "Never give up and good luck will find you."
// -- Falcor
var ending = str.substr(-target.length);
if (ending === target) {
return true;
} else {
return false;
}
}
confirmEnding("Bastian is", "is");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment