Remove empty elements from an array in Javascript

后端 未结 30 2274
无人共我
无人共我 2020-11-21 09:53

How do I remove empty elements from an array in JavaScript?

Is there a straightforward way, or do I need to loop through it and remove them manually?

相关标签:
30条回答
  • 2020-11-21 10:31

    What about that:

    js> [1,2,,3,,3,,,0,,,4,,4,,5,,6,,,,].filter(String).join(',')
    1,2,3,3,0,4,4,5,6
    
    0 讨论(0)
  • 2020-11-21 10:32

    Simply one liner:

    [1, false, "", undefined, 2].filter(Boolean); // [1, 2]
    

    or using underscorejs.org:

    _.filter([1, false, "", undefined, 2], Boolean); // [1, 2]
    // or even:
    _.compact([1, false, "", undefined, 2]); // [1, 2]
    
    0 讨论(0)
  • 2020-11-21 10:33

    If you've got Javascript 1.6 or later you can use Array.filter using a trivial return true callback function, e.g.:

    arr = arr.filter(function() { return true; });
    

    since .filter automatically skips missing elements in the original array.

    The MDN page linked above also contains a nice error-checking version of filter that can be used in JavaScript interpreters that don't support the official version.

    Note that this will not remove null entries nor entries with an explicit undefined value, but the OP specifically requested "missing" entries.

    0 讨论(0)
  • 2020-11-21 10:33

    When using the highest voted answer above, first example, i was getting individual characters for string lengths greater than 1. Below is my solution for that problem.

    var stringObject = ["", "some string yay", "", "", "Other string yay"];
    stringObject = stringObject.filter(function(n){ return n.length > 0});
    

    Instead of not returning if undefined, we return if length is greater than 0. Hope that helps somebody out there.

    Returns

    ["some string yay", "Other string yay"]
    
    0 讨论(0)
  • 2020-11-21 10:34

    EDIT: This question was answered almost nine years ago when there were not many useful built-in methods in the Array.prototype.

    Now, certainly, I would recommend you to use the filter method.

    Take in mind that this method will return you a new array with the elements that pass the criteria of the callback function you provide to it.

    For example, if you want to remove null or undefined values:

    var array = [0, 1, null, 2, "", 3, undefined, 3,,,,,, 4,, 4,, 5,, 6,,,,];
    
    var filtered = array.filter(function (el) {
      return el != null;
    });
    
    console.log(filtered);

    It will depend on what you consider to be "empty" for example, if you were dealing with strings, the above function wouldn't remove elements that are an empty string.

    One typical pattern that I see often used is to remove elements that are falsy, which include an empty string "", 0, NaN, null, undefined, and false.

    You can pass to the filter method, the Boolean constructor function, or return the same element in the filter criteria function, for example:

    var filtered = array.filter(Boolean);
    

    Or

    var filtered = array.filter(function(el) { return el; });
    

    In both ways, this works because the filter method in the first case, calls the Boolean constructor as a function, converting the value, and in the second case, the filter method internally turns the return value of the callback implicitly to Boolean.

    If you are working with sparse arrays, and you are trying to get rid of the "holes", you can use the filter method passing a callback that returns true, for example:

    var sparseArray = [0, , , 1, , , , , 2, , , , 3],
        cleanArray = sparseArray.filter(function () { return true });
    
    console.log(cleanArray); // [ 0, 1, 2, 3 ]

    Old answer: Don't do this!

    I use this method, extending the native Array prototype:

    Array.prototype.clean = function(deleteValue) {
      for (var i = 0; i < this.length; i++) {
        if (this[i] == deleteValue) {         
          this.splice(i, 1);
          i--;
        }
      }
      return this;
    };
    
    test = new Array("", "One", "Two", "", "Three", "", "Four").clean("");
    test2 = [1, 2,, 3,, 3,,,,,, 4,, 4,, 5,, 6,,,,];
    test2.clean(undefined);
    

    Or you can simply push the existing elements into other array:

    // Will remove all falsy values: undefined, null, 0, false, NaN and "" (empty string)
    function cleanArray(actual) {
      var newArray = new Array();
      for (var i = 0; i < actual.length; i++) {
        if (actual[i]) {
          newArray.push(actual[i]);
        }
      }
      return newArray;
    }
    
    cleanArray([1, 2,, 3,, 3,,,,,, 4,, 4,, 5,, 6,,,,]);
    
    0 讨论(0)
  • 2020-11-21 10:34

    You can use filter with index and in operator

    let a = [1,,2,,,3];
    
    console.log(a);
    
    let b = a.filter((x,i)=> i in a);
    
    console.log(b);

    0 讨论(0)
提交回复
热议问题