array.filter(Boolean)

  • Post author:
  • Post category:其他


array.filter(Boolean)

等价于:

array.filter((item) => {return Boolean(item)})

也就是说这样写的意思就是去除数组中为“假”的元素。

0、undefined、null、NaN、’’、false



版权声明:本文为weixin_44864084原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。