JS endWith

Posted Alex_Mercer

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS endWith相关的知识,希望对你有一定的参考价值。

参考地址

代码

String.prototype.endWith = function (endStr) {
    var d = this.length - endStr.length;
    return (d >= 0 && this.lastIndexOf(endStr) == d);
}

调用

var str="I love antzone";
console.log(str.endWith("ne"));

以上是关于JS endWith的主要内容,如果未能解决你的问题,请参考以下文章

JS 实现 startWith endWith函数

Python - 多次检查后缀名(endwith)

谷歌浏览器调试jsp 引入代码片段,如何调试代码片段中的js

VSCode自定义代码片段——JS中的面向对象编程

VSCode自定义代码片段9——JS中的面向对象编程

js代码片段: utils/lcoalStorage/cookie