Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save IAmAnubhavSaini/3a8baaaa8213e7f9f258 to your computer and use it in GitHub Desktop.
Save IAmAnubhavSaini/3a8baaaa8213e7f9f258 to your computer and use it in GitHub Desktop.
function end(str, target) {
return str.substr(str.length-target.length, target.length) === target;
}
end("Bastian", "n");
end("Connor", "n");
end("Walking on water and developing software from a specification are easy if both are frozen", "specification");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment