Skip to content

Instantly share code, notes, and snippets.

@ceaksan
Created September 18, 2015 14:20
Show Gist options
  • Save ceaksan/9ca3ccde4b438fd6ccb5 to your computer and use it in GitHub Desktop.
Save ceaksan/9ca3ccde4b438fd6ccb5 to your computer and use it in GitHub Desktop.
function end(str, target) {
var fL = target.length;
var result;
/*
Peki, sonraki noktayı dikkate almamak istersek?
str = str.replace(/\.\s*$/, '');
*/
str.substr(-fL) === target ? result = true : result = false;
return result;
}
end("Walking on water and developing software from a specification are easy if both are frozen.", "n", "");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment