zoukankan      html  css  js  c++  java
  • 数组去重-----js 判断字符串中是否包含某个字符串indexOf

    判断obj对象是否在arr数组里面,是返回true

    const dealArray = (arr, obj) => {
      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));
      };
      return (arr.in_array(obj))
    }
    

    indexOf用法

    var str = "123";
    console.log(str.indexOf("3") != -1 );  // true
    
  • 相关阅读:
    Django
    Django
    Django
    6.1
    Django
    Django
    Django
    Django
    Django简介
    web应用/http协议/web框架
  • 原文地址:https://www.cnblogs.com/wwj007/p/11851526.html
Copyright © 2011-2022 走看看