UNPKG

ds-algo-study

Version:

Just experimenting with publishing a package

5 lines (4 loc) 173 B
function confirmEnding(str, target) { return str.slice(str.length - target.length) === target; } console.log(confirmEnding("He has to give me a new name", "name"));