Nodejs Array Contain contains(search)

Here you can find the source of contains(search)

Method Source Code

Array.prototype.contains = function(search) {
   return this.indexOf(search) !== -1;
};

Related

  1. contains(obj, firm)
    Array.prototype.contains = function(obj, firm) {
      firm = firm === true ? true : false;
      var i = this.length;
      while (i--) {
        if ((!firm && this[i] == obj) || this[i] === obj) {
          return true;
      return false;
    ...
    
  2. contains(object)
    Array.prototype.contains = function(object) {
      return (this.indexOf(object) != -1);
    
  3. contains(object)
    Array.prototype.contains = function(object) {
      if (this.indexOf(object) !== -1) {
        return true;
      return false;
    };
    
  4. contains(oneItem)
    Array.prototype.contains = function(oneItem)
      var index = dojo.indexOf(this, oneItem);
      return index != -1;
    
  5. contains(query)
    Array.prototype.contains = function (query)
      function compare(element) 
        return element === query;
      return this.some(compare);
    };
    
  6. contains(str)
    Array.prototype.contains = function(str)
      return this.indexOf(str) != -1;
    };
    
  7. contains(str)
    Array.prototype.contains = function(str) {
      var i = this.length;
      while (i--) {
        if (this[i] === str) {return true; }
      return false;
    };
    
  8. contains(target)
    Array.prototype.contains = function(target) {
      return this.indexOf(target) != -1;
    };
    
  9. contains(target, ordered)
    Array.prototype.contains = function (target, ordered) {
        ordered = ordered || false;
        var foundAll = true;
        if (ordered) {
            var lastIdx = -1;
            for (var i = 0; i <= target.length - 1; i++) {
                lastIdx = this.indexOf(target[i], lastIdx + 1);
                if (lastIdx == -1) {
                    foundAll = false;
    ...