当前位置:Gxlcms > css > 怎样在js的数组中过滤掉false,null,0,"",undefined,andNaN这些值

怎样在js的数组中过滤掉false,null,0,"",undefined,andNaN这些值

时间:2021-07-01 10:21:17 帮助过:23人阅读

这次给大家带来怎样在js的数组中过滤掉false, null, 0, "", undefined, and NaN这些值,在js的数组中过滤掉false, null, 0, "", undefined, and NaN这些值的注意事项有哪些,下面就是实战案例,一起来看一下。

对于 false,null,0,undefiend,NaN直接取!得到的都是true,因此这里只需要在判断空字符串"";

function bouncer(arr) {  // Don't show a false ID to this bouncer.
  return arr.filter(function(val){    return !(!val || val === "");
  });
}

相信看了本文案例你已经掌握了方法,更多精彩请关注Gxl网其它相关文章!

相关阅读:

如何判断浏览器的IE 6 7 8 9

怎么解决IE11的textarea不换行这个BUG

以上就是怎样在js的数组中过滤掉false, null, 0, "", undefined, and NaN这些值的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行