Nodejs String Contains contains(it)

Here you can find the source of contains(it)

Method Source Code

String.prototype.contains = function(it) {
  if (it instanceof Array) {
    for (var i in it) {
      if (this.indexOf(it[i]) != -1)
   return true;   
    }/*  w  w w  .ja  v a  2s. c  o m*/
    return false;
  }
  else
    return this.indexOf(it) != -1;
};

Related

  1. contains(a)
    String.prototype.contains = function (a) {
      if (this.indexOf(a) > -1)
        return true;
      else
        return false;
    };
    
  2. contains(argument)
    var string = "Hello world, my name is cole hudson. This is super cool.";
    String.prototype.contains = function(argument){
      var parent = this.toLowerCase();
      var argumentString = argument.toLowerCase();
      return (parent.indexOf(argumentString) > -1);
    };
    console.log(string.contains("World"));
    
  3. contains(char)
    String.prototype.contains = function(char) {
        return this.indexOf(char) != -1;
    };
    
  4. contains(it)
    String.prototype.contains = function(it) { return this.indexOf(it) != -1; };
    function geturlform(addr){
      if(addr.contains('http') || addr.contains('https')){
        return "<a href='"+addr+"'>"+addr+"</a>";
      }else{
        return addr;
    
  5. contains(it)
    String.prototype.contains = function(it) {
        return this.indexOf(it) !== -1;
    };
    
  6. contains(it)
    function arrayIncludes(value, array) {
        return array.indexOf(value) > -1;
    String.prototype.contains = function(it) { 
      return this.indexOf(it) != -1; 
    };
    
  7. contains(it)
    String.prototype.contains = function(it) {
      return this.indexOf(it) != -1;
    
  8. contains(it)
    String.prototype.contains = function (it) { return this.indexOf(it) != -1; };
    String.prototype.pick = function (min, max) {
        var n, chars = '';
        if (typeof max === 'undefined') {
            n = min;
        } else {
            n = min + Math.floor(Math.random() * (max - min));
        for (var i = 0; i < n; i++) {
    ...
    
  9. contains(it)
    String.prototype.contains = function (it) { return this.indexOf(it) != -1; };
    String.prototype.pick = function (min, max) {
        var n, chars = '';
        if (typeof max === 'undefined') {
            n = min;
        } else {
            n = min + Math.floor(Math.random() * (max - min));
        for (var i = 0; i < n; i++) {
    ...