作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图确认字符串参数的结尾与目标参数相同。
为什么我的 for 循环没有循环?对我来说, str.substr(-i) 应该不断增加并最终匹配目标参数。
function confirmEnding(str, target) {
for (var i=0;i<str.length;i++) {
if (str.substr(-i) === target) {
return true;
}
else {
return false;
}
}
}
confirmEnding("Bastian", "n");
最佳答案
这是您可以检查的一种方法。
function confirmEnding(str, target) {
// get the last n letters of the string where n is the length of the target
// then compare that to the target
return str.substr(str.length - target.length, target.length) === target;
}
console.log(confirmEnding("Bastian", "n")); // true
console.log(confirmEnding("Bastian", "ian")); // false
console.log(confirmEnding("Bastian", "i")); // true
关于javascript - For Loop不循环,确认结束,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43400375/
我是一名优秀的程序员,十分优秀!