Nodejs Array Clean clean(deleteValue)

Here you can find the source of clean(deleteValue)

Method Source Code

Array.prototype.clean = function(deleteValue) {
  for (var i = 0; i < this.length; i++) {
    if (this[i] === deleteValue) {         
      this.splice(i, 1);//from w  w  w  . j  a va  2s.  com
      i--;
    }
  }
  return this;
};

Related

  1. clean()
    Array.prototype.clean = function() {
      for(let i = 0; i < this.length; i++) {
        if(this[i] === "") {
          this.splice(i, 1);
      return this;
    };
    
  2. clean()
    Array.prototype.clean = function() {
        for(var i = 0; i < this.length; i++) {
            if(this[i] === "") {
                this.splice(i, 1);
        return this;
    };
    
  3. clean()
    Array.prototype.clean = function() {
        var i = this.length;
        var clean = []
        while (i--) {
            this[i] = this[i].trim()
            if (this[i] && this[i].length) {
                clean.push(this[i])
        return clean.reverse();
    
  4. clean()
    Array.prototype.clean = function() {
      return this.filter(function(a) { 
        return a;
      });
    
  5. clean(deleteValue)
    Array.prototype.clean = function(deleteValue) {
      for (var i = 0; i < this.length; i++) {
        if (this[i] == deleteValue) {
          this.splice(i, 1);
          i--;
      return this;
    };
    ...
    
  6. clean(deleteValue)
    'use strict';
    Array.prototype.clean = Array.prototype.clean || function(deleteValue) {
      for (var i = 0; i < this.length; i++) {
        if (this[i] == deleteValue) {         
          this.splice(i, 1);
          i--;
      return this;
    ...
    
  7. clean(deleteValue)
    Array.prototype.clean = function(deleteValue) {
      for (var i = 0; i < this.length; i++) {
        if (this[i] == deleteValue) {         
          this.splice(i, 1);
          i--;
      return this;
    };
    ...
    
  8. clean(deleteValue)
    Array.prototype.clean = function(deleteValue) {
        for (var i = 0; i < this.length; i++) {
            if (this[i] === deleteValue) {
                this.splice(i, 1);
                i--;
        return this;
    };
    ...
    
  9. clean(deleteValue)
    function rand(from,to)
        return Math.floor(Math.random()*(to-from+1)+from);
    Array.prototype.clean = function(deleteValue) {
      for (var i = 0; i < this.length; i++) {
        if (this[i] == deleteValue) {         
          this.splice(i, 1);
          i--;
    ...