Confirmando el final JavaScript
function confirmEnding(str, target) {
return str.slice(str.length - target.length) === target;
}
confirmEnding("He has to give me a new name", "name");
Noob Dev