博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
FreeCodeCamp:Confirm the Ending
阅读量:6474 次
发布时间:2019-06-23

本文共 1036 字,大约阅读时间需要 3 分钟。

要求:

检查一个字符串(str)是否以指定的字符串(target)结尾。

如果是,返回true;如果不是,返回false。

结果:

  • confirmEnding("Bastian", "n") 应该返回 true.
  • confirmEnding("Connor", "n") 应该返回 false.
  • 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") 应该返回 true.
  • confirmEnding("He has to give me a new name", "me") 应该返回 true.
  • confirmEnding("He has to give me a new name", "na") 应该返回 false.
  • confirmEnding("If you want to save our world, you must hurry. We dont know how much longer we can withstand the nothing", "mountain") 应该返回 false.

 

1 function confirmEnding(str, target) { 2   // "Never give up and good luck will find you." 3   var length=target.length; 4   var strlength=str.length; 5   var newstr=str.substr(strlength-length,length); 6   if(newstr==target){ 7     return true; 8   } 9   else{10     return false;11   }12   // -- Falcor13   //return str;14 }15 16 confirmEnding("Bastian", "n");

 

 

 

转载于:https://www.cnblogs.com/ttmj865/p/6048852.html

你可能感兴趣的文章
云时代,程序员将面临的分化
查看>>
js判断移动端是否安装某款app的多种方法
查看>>
学习angularjs的内置API函数
查看>>
4、输出名称 Exported names
查看>>
paste工具
查看>>
Pre-echo(预回声),瞬态信号检测与TNS
查看>>
【转载】如何发送和接收 Windows Phone 的 Raw 通知
查看>>
WCF简要介绍
查看>>
poj2378
查看>>
【译】SQL Server误区30日谈-Day12-TempDB的文件数和需要和CPU数目保持一致
查看>>
不为技术而技术:大型网站架构演化解析
查看>>
Java文件清单列表
查看>>
js url传值中文乱码之解决之道
查看>>
Atitit.获取某个服务 网络邻居列表 解决方案
查看>>
Trusty TEE
查看>>
[LeetCode] Reverse String 翻转字符串
查看>>
学习iOS【3】数组、词典和集合
查看>>
Hessian 原理分析--转
查看>>
转: 基于netty+ protobuf +spring + hibernate + jgroups开发的游戏服务端
查看>>
easyui传入map的数据前台展示出tree格式数据
查看>>