~Onlooker 2008-11-11 15:48 采纳率: 0%
浏览 119
已采纳

删除数组中的空元素

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?

转载于:https://stackoverflow.com/questions/281264/remove-empty-elements-from-an-array-in-javascript

  • 写回答

1条回答 默认 最新

  • ℙℕℤℝ 2008-11-11 16:12
    关注

    EDIT: This question was answered almost 9 year ago, when there were not much useful built-in methods in the Array.prototype.

    Now, certainly I would just 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 common 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 simply pass to the filter method, the Boolean constructor function, or simply 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 converts 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 simply 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,,,,]);
    
    </div>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥50 永磁型步进电机PID算法
  • ¥15 sqlite 附加(attach database)加密数据库时,返回26是什么原因呢?
  • ¥88 找成都本地经验丰富懂小程序开发的技术大咖
  • ¥15 如何处理复杂数据表格的除法运算
  • ¥15 如何用stc8h1k08的片子做485数据透传的功能?(关键词-串口)
  • ¥15 有兄弟姐妹会用word插图功能制作类似citespace的图片吗?
  • ¥200 uniapp长期运行卡死问题解决
  • ¥15 latex怎么处理论文引理引用参考文献
  • ¥15 请教:如何用postman调用本地虚拟机区块链接上的合约?
  • ¥15 为什么使用javacv转封装rtsp为rtmp时出现如下问题:[h264 @ 000000004faf7500]no frame?