-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path06-confirm-the-ending.js
24 lines (22 loc) · 1.36 KB
/
06-confirm-the-ending.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
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.
- confirmEnding("Bastian", "n") should return true.
- confirmEnding("Congratulation", "on") should return true.
- confirmEnding("Connor", "n") should return false.
- confirmEnding("Walking on water and developing software from a specification are easy if both are frozen", "specification") should return false.
- confirmEnding("He has to give me a new name", "name") should return true.
- confirmEnding("Open sesame", "same") should return true.
- confirmEnding("Open sesame", "sage") should return false.
- confirmEnding("Open sesame", "game") should return false.
- confirmEnding("If you want to save our world, you must hurry. We dont know how much longer we can withstand the nothing", "mountain") should return false.
- confirmEnding("Abstraction", "action") should return true.
- Your code should not use the built-in method .endsWith() to solve the challenge.
*/
function confirmEnding(str, target) {
return str.substr(str.length - target.length) === target;
}
console.log(confirmEnding("Bastian", "n"));
console.log(confirmEnding("Congratulation", "on"));