欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

JS 判断数组中是否存在某字符串

程序员文章站 2022-07-13 17:27:26
...

//判断数组中是否存在某字符串
Array.prototype.S=String.fromCharCode(2);
Array.prototype.in_array=function(e){
    var r=new RegExp(this.S+e+this.S);
    return (r.test(this.S+this.join(this.S)+this.S));
};

 

用法:

    var arr = ['a','b','c'];

    arr.in_array("a");//返回值为true或false。存在为true,不存在为false。

相关标签: js 数组