美文网首页
数组去除数组中为“假”的元素。

数组去除数组中为“假”的元素。

作者: 陶菇凉 | 来源:发表于2020-12-28 08:44 被阅读0次

    array.filter(Boolean)
    Array.prototype.filter()方法用于过滤数组,返回一个符合特定操作的元素组成的数组。
    array.filter((item) => {return Boolean(item)})
    也就是说这样写的意思就是去除数组中为“假”的元素。
    \color{#FF0000}{0、undefined、null、NaN、'''、false}

    相关文章

      网友评论

          本文标题:数组去除数组中为“假”的元素。

          本文链接:https://www.haomeiwen.com/subject/ufcinktx.html