Nodejs Array Reject reject(array)

Here you can find the source of reject(array)

Method Source Code

Array.prototype.reject = function(array) {
    return $.map(this, function(ele) {
        return $.inArray(ele, array) < 0 ? ele : null;
    })/*from www.  j  a  v a2  s.  c o  m*/
}

Related

  1. reject(callback)
    Array.prototype.reject = function(callback) {
      var arr = [];
      var length = this.length;
      if ( length < 0 )
        length = 0;
      for (var i = 0; i < length; i++)
        if ( i in this )
          if (!callback(this[i]))
            arr.push(this[i]);
    ...
    
  2. reject(callback)
    Array.prototype.reject = function(callback) {
      var arr = []
      var length = this.length
      if (length < 0) length = 0
      for (var i = 0; i < length; i++) {
        if (i in this)
          if (!callback(this[i]))
            arr.push(this[i])
      return arr
    
  3. reject(fun)
    Array.prototype.reject = function(fun) {
      return this.reduce(function(res, el) {
        if(!fun(el)) {
          res.push(el);
        };
        return res;
      }, []);