手记

JS中substr函数的使用方法和实例

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

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

代码:

function confirmEnding(str, target) {
  // "Never give up and good luck will find you."
  // -- Falcor

  return target == str.substr(str.length-target.length,target.length);
}

confirmEnding("Bastian", "n");
0人推荐
随时随地看视频
慕课网APP