Nodejs Array Filter filterByField(field, key)

Here you can find the source of filterByField(field, key)

Method Source Code

/**/*from  w  ww . ja  va  2s . com*/
 * Filters an array and returns all objects where the given field has the value of the given key.
 * 
 * @param {String} field the name of the field
 * @param {String} key the wishd content of the field
 * @return Returns an  array containing only objects where the given field has the value of the given key
 * @type Array
 */
Array.prototype.filterByField = function(field, key) {
   var newArray = [];
   for (var i = 0; i < this.length; i++) {
      if (this[i][field] == key) {
         newArray.push(this[i]);
      }
   }
   return newArray;
};

Related

  1. filter(search, func)
    Array.prototype.filter = function(search, func) {
      var results = [];
      for(var i = 0; i < this.length; i++) {
        if(func(search, this[i]))
           results.push(this[i]);
      return results;
    
  2. filter(test)
    Array.prototype.filter = function (test) {
        var i, item, newArray = [];
        for (i = 0; i < this.length; i++) {
      item = this[i];
      if (test(item)) {
          newArray.push(item);
        return newArray;
    ...
    
  3. filter(testFunction)
    Array.prototype.filter = function(testFunction){
      var result = [];
      this.forEach(function(item){
        if(testFunction(item)){
          result.push(item);
      })
      return result;
    
  4. cs142filter(element, func)
    'use strict'
    Array.prototype.cs142filter = function(element, func) {
      var result = [];
      var array = Object(this);
      var length = array.length;
      for (var i = 0; i < length; i++) {
        var val = array[i];
        if (func.call(undefined, element, val)) {
          result.push(val);
    ...
    
  5. customFilter(fn)
    Array.prototype.customFilter = function(fn) {
      let results = [];
        for (let i = 0; i < this.length; i++) {
            let itemExists = fn(this[i]);
            if (itemExists) {
                results.push(this[i]);
      return results;
    ...
    
  6. filterByField(field, value)
    Array.prototype.filterByField = function (field, value)
        var list = this;
        var listReturn = [];
        list.forEach(function(item)
            if (item[field] === value)
                listReturn.push(item);
    ...
    
  7. filterEmpty()
    Array.prototype.filterEmpty = function ()
        var arr = this;
        var i = arr.length;
        while (i--)
            if (arr[i] instanceof Array)
                arr[i] = arr[i].filterEmpty();
    ...
    
  8. filterSyncasync (callback, thisArg)
    Array.prototype.filterSync = async function (callback, thisArg) {
      let filterResult = await Promise.all(this.map(callback))
      return this.filter((_, index) => filterResult[index])
    
  9. filterUnique()
    Array.prototype.filterUnique = function() {
        'use strict';
        var arr = [];
        var orig = this;
        orig.forEach(function(a, i) {
            if (arr.indexOf(a) < 0) {
                arr.push(a);
            } else {
                orig.splice(i, 1);
    ...