oletemCode
1/3/2018 - 1:26 PM

Confirm the Ending

Check if a string (first argument, str) ends with the given target string (second argument, target).

This challenge can be solved with the .endsWith() method, which was introduced in ES2015. But for the purpose of this challenge, we would like you to use one of the JavaScript substring methods instead.


function confirmEnding(str, target) {
return target == str.substr(str.length-target.length);/* = 7 первым аргументом является начало, здесь это 7, то есть
  
  с первой буквы в слове seSame - 7, не указанный второй аргумент выбирает буквы до конца*/
}

confirmEnding("Open sesame", "same");

/*--------------------------------------------------(-target.length---------------------------*/

function confirmEnding(str, target) {
return target == str.substr(-target.length);// при отрицательном количестве - начнет считать с конца
}

confirmEnding("Open sesame", "same");