美文网首页
.filter(Boolean)

.filter(Boolean)

作者: 成神之路_be73 | 来源:发表于2021-05-11 16:18 被阅读0次

    学到了,厉害了
    .filter(Boolean) 是去掉假值的常用技巧。

    let arr = [];
    arr.length = 9;
    arr[3] = 4;
    let brr = arr.filter(Boolean);
    console.log('arr: ', arr); // arr:  [empty × 3, 4, empty × 5]
    console.log('brr: ', brr); // brr:  [4]
    

    相关文章

      网友评论

          本文标题:.filter(Boolean)

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