* feat(tools): add seed/solution restore script * chore(curriculum): remove empty sections' markers * chore(curriculum): add seed + solution to Chinese * chore: remove old formatter * fix: update getChallenges parse translated challenges separately, without reference to the source * chore(curriculum): add dashedName to English * chore(curriculum): add dashedName to Chinese * refactor: remove unused challenge property 'name' * fix: relax dashedName requirement * fix: stray tag Remove stray `pre` tag from challenge file. Signed-off-by: nhcarrigan <nhcarrigan@gmail.com> Co-authored-by: nhcarrigan <nhcarrigan@gmail.com>
2.6 KiB
id, title, challengeType, forumTopicId, dashedName
id | title | challengeType | forumTopicId | dashedName |
---|---|---|---|---|
acda2fb1324d9b0fa741e6b5 | Confirm the Ending | 5 | 16006 | confirm-the-ending |
--description--
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.
--hints--
confirmEnding("Bastian", "n")
should return true.
assert(confirmEnding('Bastian', 'n') === true);
confirmEnding("Congratulation", "on")
should return true.
assert(confirmEnding('Congratulation', 'on') === true);
confirmEnding("Connor", "n")
should return false.
assert(confirmEnding('Connor', 'n') === false);
confirmEnding("Walking on water and developing software from a specification are easy if both are frozen", "specification")
should return false.
assert(
confirmEnding(
'Walking on water and developing software from a specification are easy if both are frozen',
'specification'
) === false
);
confirmEnding("He has to give me a new name", "name")
should return true.
assert(confirmEnding('He has to give me a new name', 'name') === true);
confirmEnding("Open sesame", "same")
should return true.
assert(confirmEnding('Open sesame', 'same') === true);
confirmEnding("Open sesame", "sage")
should return false.
assert(confirmEnding('Open sesame', 'sage') === false);
confirmEnding("Open sesame", "game")
should return false.
assert(confirmEnding('Open sesame', 'game') === 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.
assert(
confirmEnding(
'If you want to save our world, you must hurry. We dont know how much longer we can withstand the nothing',
'mountain'
) === false
);
confirmEnding("Abstraction", "action")
should return true.
assert(confirmEnding('Abstraction', 'action') === true);
Your code should not use the built-in method .endsWith()
to solve the challenge.
assert(!/\.endsWith\(.*?\)\s*?;?/.test(code) && !/\['endsWith'\]/.test(code));
--seed--
--seed-contents--
function confirmEnding(str, target) {
return str;
}
confirmEnding("Bastian", "n");
--solutions--
function confirmEnding(str, target) {
return str.substring(str.length - target.length) === target;
}
confirmEnding("Bastian", "n");