Confirm the Ending
Posted 子非鱼的鱼
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Confirm the Ending相关的知识,希望对你有一定的参考价值。
检查字符串结尾
判断一个字符串(str
)是否以指定的字符串(target
)结尾。
如果是,返回true;如果不是,返回false。
当你完成不了挑战的时候,记得开大招‘Read-Search-Ask‘。
这是一些对你有帮助的资源:
function confirmEnding(str, target) { // 请把你的代码写在这里 if(str.substr(str.length - target.length,str.length)===target){ return true; }else{ return false; } } confirmEnding("Bastian", "n");
以上是关于Confirm the Ending的主要内容,如果未能解决你的问题,请参考以下文章
FreeCodeCamp:Confirm the Ending
freeCodeCamp Confirm the Ending
windows git安装后更换the line ending conversions
环境初始化 Build and Install the Apache Thrift IDL Compiler Install the Platform Development Tools(代码片段