Nodejs Array In inArray(comparer)

Here you can find the source of inArray(comparer)

Method Source Code

// check if an element exists in array using a comparer function
// comparer : function(currentElement)
Array.prototype.inArray = function(comparer) { 
    for(var i=0; i < this.length; i++) { 
        if(comparer(this[i])) return true; 
    }/*from ww  w  . ja  v  a  2s  .  c  o  m*/
    return false; 
};

Related

  1. inArray()
    Array.prototype.inArray = function()
      for (var j in this) { 
        if (this[j] == arguments[0]) { 
          return true;
      return false;     
    
  2. inArray(comparer)
    Array.prototype.inArray = function(comparer) { 
        for(var i=0; i < this.length; i++) { 
            if(comparer(this[i])) return true; 
        return false; 
    };
    
  3. inArray(comparer)
    Array.prototype.inArray = function(comparer) { 
        for(var i=0; i < this.length; i++) { 
            if(comparer(this[i])) return true; 
        return false; 
    };
    
  4. inArray(comparer)
    Array.prototype.inArray = function(comparer) { 
        for(var i=0; i < this.length; i++) { 
            if(comparer(this[i])) return true; 
        return false; 
    };
    
  5. inArray(comparer)
    Array.prototype.inArray = function(comparer) {
      for (var i = 0; i < this.length; i++) {
        if (comparer(this[i])) return true;
      return false;
    };
    Array.prototype.pushIfNotExist = function(element, comparer) {
      if (!this.inArray(comparer)) {
        this.push(element);
    ...
    
  6. inArray(e)
    Array.prototype.inArray = function(e) {
        for (var i in this){
            if (this[i]===e) return true;
        return false;
    
  7. inArray(e)
    Array.prototype.inArray = function(e) {
      var length = this.length;
      for (var i = 0; i < length; i++) {
        if (this[i] == e)
          return true;
      return false;
    };
    
  8. inArray(element)
    Array.prototype.inArray = function (element) {
      for (var i = 0; i < this.length; i++) {
        if (this[i] == element) {
          return i;
      return -1;
    };
    
  9. inArray(find, option)
    Array.prototype.inArray = function (find, option) {
        var length = this.length;
        for (var i = 0; i < length; i++) {
            if (option == "case-insensitive") {
                if (this[i].toLowerCase() == find.toLowerCase()) {
                    return true;
            if (this[i] == find) {
    ...